1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-19 20:01:30 +00:00

remove pointless escaping of the password (refs #392)

This commit is contained in:
Andrew Dolgov
2011-11-22 11:05:12 +04:00
parent 92decf4f2d
commit 4044a5fa52
3 changed files with 6 additions and 6 deletions

View File

@@ -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)) {