From: Michael M Slusarz Date: Mon, 19 Oct 2009 16:09:57 +0000 (-0600) Subject: Bug #8652: Fix method call X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=5470c3bc782f817b0894bd2b4c6213c413d6a763;p=horde.git Bug #8652: Fix method call --- diff --git a/framework/Auth/lib/Horde/Auth/Application.php b/framework/Auth/lib/Horde/Auth/Application.php index 47798e97e..7b7eb4723 100644 --- a/framework/Auth/lib/Horde/Auth/Application.php +++ b/framework/Auth/lib/Horde/Auth/Application.php @@ -173,7 +173,7 @@ class Horde_Auth_Application extends Horde_Auth_Base { if ($this->hasCapability('add')) { $registry = Horde_Registry::singleton(); - $registry->callAppMethod($this->_app, $this->_apiMethods['exists'], array('args' => array($userId, $credentials))); + $registry->callAppMethod($this->_app, $this->_apiMethods['add'], array('args' => array($userId, $credentials))); } else { parent::addUser($userId, $credentials); }