From: Michael M Slusarz Date: Wed, 19 Jan 2011 19:04:45 +0000 (-0700) Subject: Simplify X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=2fe7b5ec242a16f362eba01eb7d9096121eaa5f9;p=horde.git Simplify --- diff --git a/imp/lib/Auth.php b/imp/lib/Auth.php index 078312e55..e9021ccf3 100644 --- a/imp/lib/Auth.php +++ b/imp/lib/Auth.php @@ -158,11 +158,7 @@ class IMP_Auth } try { - return self::authenticate(array( - 'password' => $credentials['password'], - 'server' => $credentials['server'], - 'userId' => $credentials['userId'] - )); + return self::authenticate($credentials); } catch (Horde_Auth_Exception $e) { return false; }