summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-10-01 05:40:40 +0100
committerAndrew Dolgov <[email protected]>2006-10-01 05:40:40 +0100
commit23c2a4e7aefa20361b69751677152762ccef5553 (patch)
treeaae574c0ff5819f0b26d987a35362250091ca655 /backend.php
parente7dfc9c9892f5a7b1aa205f04b254d12883ecab2 (diff)
graycube fixes; code cleanup
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php35
1 files changed, 17 insertions, 18 deletions
diff --git a/backend.php b/backend.php
index e7e4d6bcf..e9bca7346 100644
--- a/backend.php
+++ b/backend.php
@@ -1441,28 +1441,27 @@
$feed_search = $_SESSION["prefs_feed_search"];
}
- print "<table width='100%' class=\"prefGenericAddBox\"
- cellspacing='0' cellpadding='0'><tr>
- <td>
- <input id=\"fadd_link\"
- onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
- size=\"40\">
- <input type=\"submit\" class=\"button\"
- disabled=\"true\" id=\"fadd_submit_btn\"
- onclick=\"addFeed()\" value=\"Subscribe\">";
+ print "<div class=\"feedEditSearch\">
+ <input id=\"feed_search\" size=\"20\"
+ onchange=\"javascript:updateFeedList()\" value=\"$feed_search\">
+ <input type=\"submit\" class=\"button\"
+ onclick=\"javascript:updateFeedList()\" value=\"Search\">
+ </div>";
+
+ print "<div class=\"prefGenericAddBox\">
+ <input id=\"fadd_link\"
+ onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
+ size=\"40\">
+ <input type=\"submit\" class=\"button\"
+ disabled=\"true\" id=\"fadd_submit_btn\"
+ onclick=\"addFeed()\" value=\"Subscribe\">";
if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) {
print " <input type=\"submit\" class=\"button\"
onclick=\"javascript:browseFeeds()\" value=\"Top 25\">";
}
-
- print "</td><td align='right'>
- <input id=\"feed_search\" size=\"20\"
- onchange=\"javascript:updateFeedList()\" value=\"$feed_search\">
- <input type=\"submit\" class=\"button\"
- onclick=\"javascript:updateFeedList()\" value=\"Search\">
- </td>
- </tr></table>";
+
+ print "</div>";
$feeds_sort = db_escape_string($_GET["sort"]);
@@ -3291,7 +3290,7 @@
onkeyup=\"toggleSubmitNotEmpty(this, 'user_add_btn')\"
size=\"40\">&nbsp;";
- print"<input type=\"submit\" class=\"button\"
+ print "<input type=\"submit\" class=\"button\"
id=\"user_add_btn\" disabled=\"true\"
onclick=\"javascript:addUser()\" value=\"Create user\"></div>";