From 4044a5fa5265cab619dd47e2000f90dc2e455fbe Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 22 Nov 2011 11:05:12 +0400 Subject: remove pointless escaping of the password (refs #392) --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 10f8e034e..730b20c86 100644 --- a/functions.php +++ b/functions.php @@ -2111,7 +2111,7 @@ # try to authenticate user if called from login form if ($login_action == "do_login") { $login = db_escape_string($_POST["login"]); - $password = db_escape_string($_POST["password"]); + $password = $_POST["password"]; $remember_me = $_POST["remember_me"]; if (authenticate_user($link, $login, $password)) { -- cgit v1.2.3-54-g00ecf