From: Andrew Dolgov Date: Thu, 17 Nov 2005 07:26:33 +0000 (+0100) Subject: disable config updates if WEB_DEMO_MODE is on X-Git-Tag: schema_feature_freeze_for_1.1~265 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=01d68cf94f5e25de0ae30c817ec274c7ca079c57;p=tt-rss.git disable config updates if WEB_DEMO_MODE is on --- diff --git a/backend.php b/backend.php index 5d69e0f4..61b9bab5 100644 --- a/backend.php +++ b/backend.php @@ -1510,6 +1510,8 @@ if ($subop == "Save configuration") { + if (WEB_DEMO_MODE) return; + foreach (array_keys($_POST) as $pref_name) { $pref_name = db_escape_string($pref_name); @@ -1562,6 +1564,8 @@ } else if ($subop == "Reset to defaults") { + if (WEB_DEMO_MODE) return; + db_query($link, "UPDATE ttrss_prefs SET value = def_value"); header("Location: prefs.php");