summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index 357fff787..f0ff2ce28 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -711,7 +711,7 @@
}
}
- } else {
+ } else if (get_schema_version($link) > 87) {
$result = db_query($link, "SELECT salt FROM ttrss_users WHERE
login = '$login'");
@@ -754,6 +754,11 @@
login = '$login' AND pwd_hash = '$pwd_hash'";
}
+ } else {
+ $query = "SELECT id,login,access_level,pwd_hash
+ FROM ttrss_users WHERE
+ login = '$login' AND (pwd_hash = '$pwd_hash1' OR
+ pwd_hash = '$pwd_hash2')";
}
$result = db_query($link, $query);