From 5cc8158e6ca359c5969ff319b48a7358fbd32a80 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 14 Jul 2009 23:11:00 -0600 Subject: [PATCH] Fix call (API func name; only takes 2 parameters). --- framework/Auth/lib/Horde/Auth/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Auth/lib/Horde/Auth/Application.php b/framework/Auth/lib/Horde/Auth/Application.php index 9818abbaf..391401ec5 100644 --- a/framework/Auth/lib/Horde/Auth/Application.php +++ b/framework/Auth/lib/Horde/Auth/Application.php @@ -97,7 +97,7 @@ class Horde_Auth_Application extends Horde_Auth_Base $registry = Horde_Registry::singleton(); try { - $result = $registry->callByPackage($this->_params['app'], 'authenticate', array($userId, $credentials, $this->_params['params'])); + $result = $registry->callByPackage($this->_params['app'], $this->_apiMethods['authenticate'], array($userId, $credentials)); } catch (Horde_Auth_Exception $e) { throw new Horde_Auth_Exception('', Horde_Auth::REASON_BADLOGIN); } -- 2.11.0