summaryrefslogtreecommitdiff
path: root/plugins/http_authentication/http_authentication.php
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-02-14 20:40:11 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-02-14 20:40:11 +0000
commit2e91bb700b0ea556d4780a4d80703f3ce8473391 (patch)
treebe78d7bcc35a5664de892c89c035c0a1909ef719 /plugins/http_authentication/http_authentication.php
parentd2a69c57246fe7b7e7c01cc5e3f6d2da8b303403 (diff)
Skip new CSRF checks in authentication plugins
git-svn-id: https://svn.roundcube.net/trunk@4540 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/http_authentication/http_authentication.php')
-rw-r--r--plugins/http_authentication/http_authentication.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/http_authentication/http_authentication.php b/plugins/http_authentication/http_authentication.php
index a8003cf46..6da6488a0 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.1
+ * @version 1.2
* @author Thomas Bruederli
*/
class http_authentication extends rcube_plugin
@@ -36,6 +36,7 @@ class http_authentication extends rcube_plugin
}
$args['cookiecheck'] = false;
+ $args['valid'] = true;
return $args;
}