From: Michael M Slusarz Date: Thu, 15 Oct 2009 12:40:00 +0000 (-0600) Subject: This is the actual entry point for transparent auth - need to catch parameter here X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=b9a9e7cddd3c4ecbd4e5b9a16cd52b0bd5c141dd;p=horde.git This is the actual entry point for transparent auth - need to catch parameter here --- diff --git a/imp/lib/Application.php b/imp/lib/Application.php index a9d1e2df6..4c15e31ab 100644 --- a/imp/lib/Application.php +++ b/imp/lib/Application.php @@ -309,13 +309,15 @@ class IMP_Application extends Horde_Registry_Application * Tries to transparently authenticate with the mail server and create a * mail session. * + * @param Horde_Auth_Application $auth_ob The authentication object. + * * @return boolean Whether transparent login is supported. * @throws Horde_Auth_Exception */ - public function authTransparent() + public function authTransparent($auth_ob) { $this->init(array('authentication' => 'none')); - return IMP_Auth::transparent(); + return IMP_Auth::transparent($auth_ob); } /**