diff options
| author | 2015-10-25 19:31:41 +0100 | |
|---|---|---|
| committer | 2015-10-25 19:31:41 +0100 | |
| commit | ad1f0cb96b3eefdeac5031e59c8810fc9427b6e2 (patch) | |
| tree | 6ab95f17e8704beab2f3c8bf4382a58faadf2754 /app/Controllers/authController.php | |
| parent | 7bb28c3f2b77b109451e2514e83fa99789fee35e (diff) | |
Return after 403
https://github.com/FreshRSS/FreshRSS/pull/1016
https://github.com/FreshRSS/FreshRSS/issues/1015
Diffstat (limited to 'app/Controllers/authController.php')
| -rw-r--r-- | app/Controllers/authController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controllers/authController.php b/app/Controllers/authController.php index bccce5a59..f58b008de 100644 --- a/app/Controllers/authController.php +++ b/app/Controllers/authController.php @@ -124,6 +124,7 @@ class FreshRSS_auth_Controller extends Minz_ActionController { $conf = get_user_configuration($username); if (is_null($conf)) { Minz_Error::error(403, array(_t('feedback.auth.login.invalid')), false); + return; } $ok = FreshRSS_FormAuth::checkCredentials( |
