aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/authController.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-06 21:54:46 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-06 21:54:46 +0100
commiteff804572f449a1072274eb6623709b162db4da9 (patch)
treeb8692658db5058b81a053c18f73143494bedb259 /app/Controllers/authController.php
parentdd41642ce617ccf873974d884043c21c1fe10223 (diff)
Fix setters on $user_conf
Old setters does not exist anymore, remove them. 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 e1f895412..9a11bedc4 100644
--- a/app/Controllers/authController.php
+++ b/app/Controllers/authController.php
@@ -29,7 +29,7 @@ class FreshRSS_auth_Controller extends Minz_ActionController {
$current_token = FreshRSS_Context::$user_conf->token;
$token = Minz_Request::param('token', $current_token);
- FreshRSS_Context::$user_conf->_token($token);
+ FreshRSS_Context::$user_conf->token = $token;
$ok &= FreshRSS_Context::$user_conf->save();
$anon = Minz_Request::param('anon_access', false);