summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-02 21:07:47 +0100
committerAndrew Dolgov <[email protected]>2005-12-02 21:07:47 +0100
commitcfaba6df12647fef06658f123a73819dc958789b (patch)
tree298e178b3fe1711bec2be242735d5b280d85b663 /backend.php
parentc868b15476c5e010367cab3f588cee636b3b136c (diff)
option GLOBAL_ENABLE_LABELS restricts labels globally
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index fd2659996..93199e43e 100644
--- a/backend.php
+++ b/backend.php
@@ -272,7 +272,7 @@
print "</li></ul>";
}
- if (get_pref($link, 'ENABLE_LABELS')) {
+ if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) {
$result = db_query($link, "SELECT id,sql_exp,description FROM
ttrss_labels WHERE owner_uid = '$owner_uid' ORDER by description");
@@ -2203,6 +2203,10 @@
if ($op == "pref-labels") {
+ if (!GLOBAL_ENABLE_LABELS) {
+ return;
+ }
+
$subop = $_GET["subop"];
if ($subop == "test") {