From c948c981b229b864de2d6f6a6e80416d59ad532e Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 2 Jun 2010 10:13:04 -0600 Subject: [PATCH] Fix convertUserName() conversion --- framework/Auth/lib/Horde/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Auth/lib/Horde/Auth.php b/framework/Auth/lib/Horde/Auth.php index 57214f4a2..8adc44a41 100644 --- a/framework/Auth/lib/Horde/Auth.php +++ b/framework/Auth/lib/Horde/Auth.php @@ -525,7 +525,7 @@ class Horde_Auth try { if (!$is_auth) { - $userId = self::convertUserName($userId, true); + $userId = $GLOBALS['registry']->convertUserName($userId, true); } list(,$credentials) = self::runHook($userId, $credentials, $app, 'postauthenticate'); } catch (Horde_Auth_Exception $e) { -- 2.11.0