From 5470c3bc782f817b0894bd2b4c6213c413d6a763 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 19 Oct 2009 10:09:57 -0600 Subject: [PATCH] Bug #8652: Fix method call --- 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 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); } -- 2.11.0