summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/pref-prefs.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/pref-prefs.php b/modules/pref-prefs.php
index 6c1934309..e3e4cb4d5 100644
--- a/modules/pref-prefs.php
+++ b/modules/pref-prefs.php
@@ -10,6 +10,9 @@
function module_pref_prefs($link) {
$subop = $_REQUEST["subop"];
+ $prefs_blacklist = array();
+ //$prefs_blacklist = array("HIDE_FEEDLIST");
+
if ($subop == "change-password") {
$old_pw = $_POST["OLD_PASSWORD"];
@@ -329,6 +332,10 @@
while ($line = db_fetch_assoc($result)) {
+ if (in_array($line["pref_name"], $prefs_blacklist)) {
+ continue;
+ }
+
if ($active_section != $line["section_name"]) {
if ($active_section != "") {