]> git.wh0rd.org Git - tt-rss.git/commitdiff
move print_label_select to functions.php
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Tue, 9 Nov 2010 15:10:22 +0000 (18:10 +0300)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Tue, 9 Nov 2010 15:10:22 +0000 (18:10 +0300)
functions.php
modules/pref-filters.php

index 2d0f406157b0b2be94d592316d336ba8c86299d4..bc3b28826707fad2631b844e032e538a8037847e 100644 (file)
 
                return true;
        }
+
+       function print_label_select($link, $name, $value, $style = "") {
+
+               $result = db_query($link, "SELECT caption FROM ttrss_labels2
+                       WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
+
+               print "<select default=\"$value\" name=\"" . htmlspecialchars($name) . 
+                       "\" style=\"$style\" onchange=\"labelSelectOnChange(this)\" >";
+
+               while ($line = db_fetch_assoc($result)) {
+
+                       $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
+
+                       print "<option $issel>" . htmlspecialchars($line["caption"]) . "</option>";
+
+               }
+
+               print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
+
+               print "</select>";
+
+
+       }
+
 ?>
index 18d25a82f90bb88b989f4ebb179791e5348551bc..88b4087ce2f1466fbfedd4d2e24395ca74caf774 100644 (file)
                }
        }
 
-       function print_label_select($link, $name, $value, $style = "") {
-
-               $result = db_query($link, "SELECT caption FROM ttrss_labels2
-                       WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY caption");
-
-               print "<select default=\"$value\" name=\"" . htmlspecialchars($name) . 
-                       "\" style=\"$style\" onchange=\"labelSelectOnChange(this)\" >";
-
-               while ($line = db_fetch_assoc($result)) {
-
-                       $issel = ($line["caption"] == $value) ? "selected=\"1\"" : "";
-
-                       print "<option $issel>" . htmlspecialchars($line["caption"]) . "</option>";
-
-               }
-
-               print "<option value=\"ADD_LABEL\">" .__("Add label...") . "</option>";
-
-               print "</select>";
-
-
-       }
 ?>