auth_internal: don't try to get otp_enabled on old schema

This commit is contained in:
Andrew Dolgov 2021-03-01 15:49:44 +03:00
parent 6359259dbb
commit dbad39d7a2
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ class Auth_Internal extends Auth_Base {
if (get_schema_version() > 87) {
$sth = $this->pdo->prepare("SELECT salt,login,otp_enabled,pwd_hash FROM ttrss_users WHERE id = ?");
} else {
$sth = $this->pdo->prepare("SELECT login,otp_enabled,pwd_hash FROM ttrss_users WHERE id = ?");
$sth = $this->pdo->prepare("SELECT login,pwd_hash FROM ttrss_users WHERE id = ?");
}
$sth->execute([$owner_uid]);