From f11cf3e60087a2432f3de8077445c4984b062111 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 5 Dec 2012 18:33:16 +0100 Subject: Fix typo, the issue unintentionally removes password from the session --- plugins/http_authentication/http_authentication.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/http_authentication') 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']); } } -- cgit v1.2.3