mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-23 19:01:28 +00:00
disable config updates if WEB_DEMO_MODE is on
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user