summaryrefslogtreecommitdiff
path: root/plugins/http_authentication
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2010-02-18 17:32:33 +0000
committerthomascube <thomas@roundcube.net>2010-02-18 17:32:33 +0000
commitaea36211d05cd219517d4e4ab102f261909f1e81 (patch)
tree0ba53968d63edee9ae1a457e9b63271b6751fe6c /plugins/http_authentication
parentbbfd612c7d3919c6b1c78e57088b39a85a2d2ed9 (diff)
Skip cookie check in http_authentication plugin (#1486188)
Diffstat (limited to 'plugins/http_authentication')
-rw-r--r--plugins/http_authentication/http_authentication.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/http_authentication/http_authentication.php b/plugins/http_authentication/http_authentication.php
index 7c2296614..a8003cf46 100644
--- a/plugins/http_authentication/http_authentication.php
+++ b/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;
}