aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/authController.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-06 22:15:51 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-06 22:15:51 +0100
commitce9298439b882d64c403eded1575db8f029aa389 (patch)
treec7389b4454787560252f5ae828adb9179f54e7a1 /app/Controllers/authController.php
parentff1e989de1ff2c0b42a358a93b407a936acb9fbc (diff)
Fix a call to $system_conf
See https://github.com/FreshRSS/FreshRSS/issues/730
Diffstat (limited to 'app/Controllers/authController.php')
-rw-r--r--app/Controllers/authController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/authController.php b/app/Controllers/authController.php
index 9a11bedc4..937c0759d 100644
--- a/app/Controllers/authController.php
+++ b/app/Controllers/authController.php
@@ -52,7 +52,7 @@ class FreshRSS_auth_Controller extends Minz_ActionController {
FreshRSS_Context::$system_conf->unsafe_autologin_enabled = $unsafe_autologin;
FreshRSS_Context::$system_conf->api_enabled = $api_enabled;
- $ok &= $system_conf->save();
+ $ok &= FreshRSS_Context::$system_conf->save();
}
invalidateHttpCache();