summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2011-08-23 18:15:04 +0000
committeralecpl <alec@alec.pl>2011-08-23 18:15:04 +0000
commit9f61af351807499a8a70ff7ca42ef983c5a1d992 (patch)
treec0ba91298839540b573103ebeb08614fe8b2b62a
parentd43d4bcf44a1feae4274e51f41ce9625147f9f85 (diff)
- Backported r5093
-rw-r--r--plugins/http_authentication/http_authentication.php12
1 files changed, 9 insertions, 3 deletions
diff --git a/plugins/http_authentication/http_authentication.php b/plugins/http_authentication/http_authentication.php
index 6da6488a0..8002160c5 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.2
+ * @version 1.3
* @author Thomas Bruederli
*/
class http_authentication extends rcube_plugin
@@ -30,14 +30,20 @@ class http_authentication extends rcube_plugin
function authenticate($args)
{
+ // Allow entering other user data in login form,
+ // e.g. after log out (#1487953)
+ if (!empty($args['user'])) {
+ return $args;
+ }
+
if (!empty($_SERVER['PHP_AUTH_USER']) && !empty($_SERVER['PHP_AUTH_PW'])) {
$args['user'] = $_SERVER['PHP_AUTH_USER'];
$args['pass'] = $_SERVER['PHP_AUTH_PW'];
}
-
+
$args['cookiecheck'] = false;
$args['valid'] = true;
-
+
return $args;
}