From 9a309c5e1ea58dd05ad383e5093b308acc673110 Mon Sep 17 00:00:00 2001 From: thomasb Date: Thu, 18 Feb 2010 17:32:33 +0000 Subject: Skip cookie check in http_authentication plugin (#1486188) git-svn-id: https://svn.roundcube.net/trunk@3272 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/plugins/http_authentication/http_authentication.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roundcubemail/plugins/http_authentication/http_authentication.php b/roundcubemail/plugins/http_authentication/http_authentication.php index 7c2296614..a8003cf46 100644 --- a/roundcubemail/plugins/http_authentication/http_authentication.php +++ b/roundcubemail/plugins/http_authentication/http_authentication.php @@ -5,7 +5,7 @@ * * Make use of an existing HTTP authentication and perform login with the existing user credentials * - * @version 1.0 + * @version 1.1 * @author Thomas Bruederli */ class http_authentication extends rcube_plugin @@ -34,6 +34,8 @@ class http_authentication extends rcube_plugin $args['user'] = $_SERVER['PHP_AUTH_USER']; $args['pass'] = $_SERVER['PHP_AUTH_PW']; } + + $args['cookiecheck'] = false; return $args; } -- cgit v1.2.3