1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 01:25:56 +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

@@ -80,8 +80,8 @@
case "login":
$login = db_escape_string($_REQUEST["user"]);
$password = db_escape_string($_REQUEST["password"]);
$password_base64 = db_escape_string(base64_decode($_REQUEST["password"]));
$password = $_REQUEST["password"];
$password_base64 = base64_decode($_REQUEST["password"]);
if (SINGLE_USER_MODE) $login = "admin";