From b9a9e7cddd3c4ecbd4e5b9a16cd52b0bd5c141dd Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 15 Oct 2009 06:40:00 -0600 Subject: [PATCH] This is the actual entry point for transparent auth - need to catch parameter here --- imp/lib/Application.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); } /** -- 2.11.0