summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-02-18 17:32:33 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-02-18 17:32:33 +0000
commit9a309c5e1ea58dd05ad383e5093b308acc673110 (patch)
treee1e809b79b40649038fc7152d2c600773e5ce51c
parent3638533a6f17624e1953d09b26136cb0558067c3 (diff)
Skip cookie check in http_authentication plugin (#1486188)
git-svn-id: https://svn.roundcube.net/trunk@3272 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/plugins/http_authentication/http_authentication.php4
1 files changed, 3 insertions, 1 deletions
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;
}