Sfoglia il codice sorgente

otpenable: use pdo prepare()

Andrew Dolgov 6 anni fa
parent
commit
e4291ba12f
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      classes/pref/prefs.php

+ 1 - 1
classes/pref/prefs.php

@@ -888,7 +888,7 @@ class Pref_Prefs extends Handler_Protected {
 
 		if ($authenticator->check_password($_SESSION["uid"], $password)) {
 
-			$sth = $this->pdo->query("SELECT salt
+			$sth = $this->pdo->prepare("SELECT salt
 				FROM ttrss_users
 				WHERE id = ?");
 			$sth->execute([$_SESSION['uid']]);