summaryrefslogtreecommitdiff
path: root/modules/pref-filters.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-09 01:04:00 +0300
committerAndrew Dolgov <[email protected]>2010-11-09 01:04:00 +0300
commit1c31e1908a1c8d8e46df83a756f2a5ad445ceb70 (patch)
treeabef2cbd40d9c0ee4ef875ccd2760b3402fc4766 /modules/pref-filters.php
parentec16da866b94a9ddc00bffb0ed8c242edc33b4d1 (diff)
allow adding labels on the fly
Diffstat (limited to 'modules/pref-filters.php')
-rw-r--r--modules/pref-filters.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/pref-filters.php b/modules/pref-filters.php
index f3ca8e4cb..c629f9c18 100644
--- a/modules/pref-filters.php
+++ b/modules/pref-filters.php
@@ -523,7 +523,8 @@
$result = db_query($link, "SELECT caption FROM ttrss_labels2
WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
- print "<select name=\"$name\" style=\"$style\">";
+ print "<select default=\"$value\" name=\"$name\" style=\"$style\"
+ onchange=\"labelSelectOnChange(this)\" >";
while ($line = db_fetch_assoc($result)) {
@@ -533,6 +534,8 @@
}
+ print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
+
print "</select>";