aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/userController.php
diff options
context:
space:
mode:
authorGravatar Purexo <contact@purexo.mom> 2019-11-26 19:26:07 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-11-26 19:26:07 +0100
commit86dda604313b1b599cc741c25e05957e7218e2de (patch)
tree3c33f6d83d6e1e5b3b4dd6bd4e3385c9f0690b00 /app/Controllers/userController.php
parent03208771f7d38771f7b9c965b79877d97cce311a (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.php2
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');