otpenable: use pdo prepare()
This commit is contained in:
parent
731ecac530
commit
e4291ba12f
|
@ -888,7 +888,7 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
|
|
||||||
if ($authenticator->check_password($_SESSION["uid"], $password)) {
|
if ($authenticator->check_password($_SESSION["uid"], $password)) {
|
||||||
|
|
||||||
$sth = $this->pdo->query("SELECT salt
|
$sth = $this->pdo->prepare("SELECT salt
|
||||||
FROM ttrss_users
|
FROM ttrss_users
|
||||||
WHERE id = ?");
|
WHERE id = ?");
|
||||||
$sth->execute([$_SESSION['uid']]);
|
$sth->execute([$_SESSION['uid']]);
|
||||||
|
|
Loading…
Reference in New Issue