]> git.wh0rd.org - tt-rss.git/commitdiff
feed editor: rework auth inputs placement a bit
authorAndrew Dolgov <fox@bah.org.ru>
Tue, 12 May 2009 09:06:01 +0000 (13:06 +0400)
committerAndrew Dolgov <fox@bah.org.ru>
Tue, 12 May 2009 09:06:01 +0000 (13:06 +0400)
modules/pref-feeds.php

index 36a0e4d326e43b4e17c658fe1999e85c886403b9..0a5db475f17d386a0ec941f5d8ae7a72756572a5 100644 (file)
 
                        $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"));
 
                                onkeypress=\"return filterCR(event, feedEditSave)\"
                                value=\"$auth_pass\">";
 
+                       print "</td></tr></table>";
+
                        print "</div>";
                        print "<div class=\"dlgSec\">".__("Options")."</div>";
                        print "<div class=\"dlgSecCont\">";