Skip to content

Commit

Permalink
This method doesn't exist anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed May 22, 2017
1 parent 31ee934 commit 1d58a4b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion horde/scripts/cookie_login.php
Expand Up @@ -24,7 +24,9 @@
if (empty($_COOKIE['user']) ||
empty($_COOKIE['password']) ||
!$auth->authenticate($_COOKIE['user'], array('password' => $_COOKIE['password']))) {
Horde::authenticationFailureRedirect();
$e = new Horde_Exception_AuthenticationFailure();
$e->application = 'horde';
throw $e;
}

$GLOBALS['horde_login_url'] = Horde_Util::getFormData('url');
Expand Down

0 comments on commit 1d58a4b

Please sign in to comment.