Skip to content
Snippets Groups Projects
Commit b6235013 authored by Michael Hamann's avatar Michael Hamann Committed by Christopher Smith
Browse files

Fix handling of failed authentication loading

In the case of a failed authentication initialization, the
authentication setup was simply continued with an unset $auth object.
This restores the previous behavior (before merging #141) of simply
returning after unsetting $auth. Furthermore this re-introduces the
check if $auth is set before checking $auth and removes a useless
check if $auth is true (could never be false).
parent 853d4ca1
No related branches found
No related tags found
No related merge requests found
......@@ -54,16 +54,17 @@ function auth_setup() {
}
}
if(!$auth){
if(!isset($auth) || !$auth){
msg($lang['authtempfail'], -1);
return false;
}
if ($auth && $auth->success == false) {
if ($auth->success == false) {
// degrade to unauthenticated user
unset($auth);
auth_logoff();
msg($lang['authtempfail'], -1);
return false;
}
// do the login either by cookie or provided credentials XXX
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment