From 86dda604313b1b599cc741c25e05957e7218e2de Mon Sep 17 00:00:00 2001 From: Purexo Date: Tue, 26 Nov 2019 19:26:07 +0100 Subject: FIX email token check if not in user-config (#2686) * FIX email token check if not in user-config * fix missing semicolon --- app/Controllers/userController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controllers/userController.php') diff --git a/app/Controllers/userController.php b/app/Controllers/userController.php index 5209edc84..39b4769fd 100644 --- a/app/Controllers/userController.php +++ b/app/Controllers/userController.php @@ -130,7 +130,7 @@ class FreshRSS_user_Controller extends Minz_ActionController { Minz_Error::error(403); } - $email_not_verified = FreshRSS_Context::$user_conf->email_validation_token !== ''; + $email_not_verified = FreshRSS_Context::$user_conf->email_validation_token != ''; $this->view->disable_aside = false; if ($email_not_verified) { $this->view->_layout('simple'); -- cgit v1.2.3