From 51c52a3d8cfd0759bb8065267048aeb448a4dc6b Mon Sep 17 00:00:00 2001 From: Gunnar Wrobel
Date: Mon, 6 Dec 2010 06:39:05 +0100 Subject: [PATCH] Fix transparent auth. 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Core/lib/Horde/Registry.php b/framework/Core/lib/Horde/Registry.php index ec1b01fa2..8be55e1d5 100644 --- 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); -- 2.11.0