From: Michael M Slusarz Date: Tue, 25 Nov 2008 06:24:58 +0000 (-0700) Subject: Can't make these changes until Auth is PHP 5-ified. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=47555fffedbb512e2c1d862ac698bd8e74fd9ac7;p=horde.git Can't make these changes until Auth is PHP 5-ified. --- diff --git a/imp/lib/Auth/imp.php b/imp/lib/Auth/imp.php index 22ed5adf5..48a14ef70 100644 --- a/imp/lib/Auth/imp.php +++ b/imp/lib/Auth/imp.php @@ -28,8 +28,8 @@ class Auth_imp extends Auth * * @return boolean Whether or not the credentials are valid. */ - public function authenticate($userID = null, $credentials = array(), - $login = false) + function authenticate($userID = null, $credentials = array(), + $login = false) { return parent::authenticate($userID, $credentials, $login && ($this->getProvider() == 'imp')); } @@ -42,7 +42,7 @@ class Auth_imp extends Auth * * @return boolean Whether or not the credentials are valid. */ - protected function _authenticate($userID, $credentials) + function _authenticate($userID, $credentials) { // Check for valid IMAP Client object. if (!$GLOBALS['imp_imap']->loadImapObject()) {