summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-05-12 13:06:01 +0400
committerAndrew Dolgov <[email protected]>2009-05-12 13:06:01 +0400
commitd616904ca7433c85194d5914ffe4d3156fcbe103 (patch)
treeef4dc1000dfb0f57849a262986dbbab1245f532f
parente3e975e6202c5ed63f2b5c973dbe1e511b9e1432 (diff)
feed editor: rework auth inputs placement a bit
-rw-r--r--modules/pref-feeds.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index 36a0e4d32..0a5db475f 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -274,11 +274,14 @@
$auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));
- print __('Login:') . " ";
+ print "<table>";
+
+ print "<tr><td>" . __('Login:') . "</td><td>";
+
print "<input size=\"20\" onkeypress=\"return filterCR(event, feedEditSave)\"
name=\"auth_login\" value=\"$auth_login\">";
- print " " . __("Password:") . " ";
+ print "</tr><tr><td>" . __("Password:") . "</td><td>";
$auth_pass = htmlspecialchars(db_fetch_result($result, 0, "auth_pass"));
@@ -286,6 +289,8 @@
onkeypress=\"return filterCR(event, feedEditSave)\"
value=\"$auth_pass\">";
+ print "</td></tr></table>";
+
print "</div>";
print "<div class=\"dlgSec\">".__("Options")."</div>";
print "<div class=\"dlgSecCont\">";