projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1244ed9
)
This is the actual entry point for transparent auth - need to catch parameter here
author
Michael M Slusarz
<slusarz@curecanti.org>
Thu, 15 Oct 2009 12:40:00 +0000
(06:40 -0600)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Thu, 15 Oct 2009 12:40:10 +0000
(06:40 -0600)
imp/lib/Application.php
patch
|
blob
|
history
diff --git
a/imp/lib/Application.php
b/imp/lib/Application.php
index
a9d1e2d
..
4c15e31
100644
(file)
--- 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
);
}
/**