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:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user