summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-12-06 09:52:20 +0100
committerAleksander Machniak <alec@alec.pl>2012-12-06 09:52:20 +0100
commit4a63c8f97282d688e2894a2a46a0de97d6788e74 (patch)
treed6e0c608e22fcae3136e43970539c27b81718a25
parent04acc75f774f8bc6292f574375b6a2f23b3ac0d4 (diff)
parentf11cf3e60087a2432f3de8077445c4984b062111 (diff)
Merge branch 'master' of github.com:roundcube/roundcubemail
-rw-r--r--plugins/http_authentication/http_authentication.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/http_authentication/http_authentication.php b/plugins/http_authentication/http_authentication.php
index a14b5cbcc..c278b3cfc 100644
--- a/plugins/http_authentication/http_authentication.php
+++ b/plugins/http_authentication/http_authentication.php
@@ -36,7 +36,7 @@ class http_authentication extends rcube_plugin
$args['action'] = 'login';
}
// Set user password in session (see shutdown() method for more info)
- else if (!empty($_SESSION['user_id']) && empty($_SESION['password'])) {
+ else if (!empty($_SESSION['user_id']) && empty($_SESSION['password'])) {
$_SESSION['password'] = $rcmail->encrypt($_SERVER['PHP_AUTH_PW']);
}
}