From: Andrew Dolgov Date: Wed, 20 Feb 2008 12:23:51 +0000 (+0100) Subject: implement blacklist for disabled prefs options X-Git-Tag: 1.2.20~10 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=4bb2b57939fba920f3a67bf377e3fa850e9e4df7;p=tt-rss.git implement blacklist for disabled prefs options --- diff --git a/modules/pref-prefs.php b/modules/pref-prefs.php index 6c193430..e3e4cb4d 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 != "") {