From: Gunnar Wrobel Date: Mon, 6 Dec 2010 05:39:05 +0000 (+0100) Subject: Fix transparent auth. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=51c52a3d8cfd0759bb8065267048aeb448a4dc6b;p=horde.git 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. --- 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);