Преглед изворни кода

FIX email token check if not in user-config (#2686)

* FIX email token check if not in user-config

* fix missing semicolon
Purexo пре 6 година
родитељ
комит
86dda60431
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      app/Controllers/userController.php

+ 1 - 1
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');