projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
881f2a7
)
Fix transparent auth.
author
Gunnar Wrobel
<p@rdus.de>
Mon, 6 Dec 2010 05:39:05 +0000
(06:39 +0100)
committer
Gunnar Wrobel
<p@rdus.de>
Mon, 6 Dec 2010 05:39:05 +0000
(06:39 +0100)
Setting to "null" here makes the isAuthenticated() check fail. Transparent
auth with Imp thus works once but fails on every subsequent check.
framework/Core/lib/Horde/Registry.php
patch
|
blob
|
history
diff --git
a/framework/Core/lib/Horde/Registry.php
b/framework/Core/lib/Horde/Registry.php
index
ec1b01f
..
8be55e1
100644
(file)
--- a/
framework/Core/lib/Horde/Registry.php
+++ b/
framework/Core/lib/Horde/Registry.php
@@
-1918,7
+1918,7
@@
class Horde_Registry
if (($base_app = $session->get('horde', 'auth/credentials')) &&
($session->get('horde', 'auth_app/' . $base_app) == $entry)) {
- $entry =
null
;
+ $entry =
true
;
}
$session->set('horde', 'auth_app/' . $app, $entry);