Commit 551f3c2c authored by tsia's avatar tsia
Browse files

fixed "reset to defaults" in preferences

parent 9f93250f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ class Pref_Prefs extends Handler_Protected {

		$_SESSION["prefs_op_result"] = "reset-to-defaults";

		$sth = $this->pdo->query("DELETE FROM ttrss_user_prefs
		$sth = $this->pdo->prepare("DELETE FROM ttrss_user_prefs
			WHERE (profile = :profile OR (:profile IS NULL AND profile IS NULL)) 
				AND owner_uid = :uid");
		$sth->execute([":profile" => $_SESSION['profile'], ":uid" => $_SESSION['uid']]);