diff options
| author | 2019-11-26 19:26:07 +0100 | |
|---|---|---|
| committer | 2019-11-26 19:26:07 +0100 | |
| commit | 86dda604313b1b599cc741c25e05957e7218e2de (patch) | |
| tree | 3c33f6d83d6e1e5b3b4dd6bd4e3385c9f0690b00 /app/Controllers/userController.php | |
| parent | 03208771f7d38771f7b9c965b79877d97cce311a (diff) | |
FIX email token check if not in user-config (#2686)
* FIX email token check if not in user-config
* fix missing semicolon
Diffstat (limited to 'app/Controllers/userController.php')
| -rw-r--r-- | app/Controllers/userController.php | 2 |
1 files changed, 1 insertions, 1 deletions
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'); |
