From ce9298439b882d64c403eded1575db8f029aa389 Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Tue, 6 Jan 2015 22:15:51 +0100 Subject: [PATCH] Fix a call to $system_conf See https://github.com/FreshRSS/FreshRSS/issues/730 --- app/Controllers/authController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();