1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-04 11:29:14 +00:00

implement blacklist for disabled prefs options

This commit is contained in:
Andrew Dolgov
2008-02-20 13:23:51 +01:00
parent 03177e82c9
commit 4bb2b57939

View File

@@ -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 != "") {