Skip cookie check in http_authentication plugin (#1486188)

release-0.6
thomascube 15 years ago
parent bbfd612c7d
commit aea36211d0

@ -5,7 +5,7 @@
* *
* Make use of an existing HTTP authentication and perform login with the existing user credentials * Make use of an existing HTTP authentication and perform login with the existing user credentials
* *
* @version 1.0 * @version 1.1
* @author Thomas Bruederli * @author Thomas Bruederli
*/ */
class http_authentication extends rcube_plugin class http_authentication extends rcube_plugin
@ -34,6 +34,8 @@ class http_authentication extends rcube_plugin
$args['user'] = $_SERVER['PHP_AUTH_USER']; $args['user'] = $_SERVER['PHP_AUTH_USER'];
$args['pass'] = $_SERVER['PHP_AUTH_PW']; $args['pass'] = $_SERVER['PHP_AUTH_PW'];
} }
$args['cookiecheck'] = false;
return $args; return $args;
} }

Loading…
Cancel
Save