This is the actual entry point for transparent auth - need to catch parameter here
authorMichael M Slusarz <slusarz@curecanti.org>
Thu, 15 Oct 2009 12:40:00 +0000 (06:40 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 15 Oct 2009 12:40:10 +0000 (06:40 -0600)
imp/lib/Application.php

index a9d1e2d..4c15e31 100644 (file)
@@ -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);
     }
 
     /**