From 12bfce5e66214791133b1c142d6db7abaefc3dc0 Mon Sep 17 00:00:00 2001 From: Dave Z Date: Mon, 1 Jan 2018 18:59:28 -0500 Subject: [PATCH] Fix missing parenthesis. --- plugins/mail/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mail/init.php b/plugins/mail/init.php index 7da87ed5..28e16054 100644 --- a/plugins/mail/init.php +++ b/plugins/mail/init.php @@ -86,7 +86,7 @@ class Mail extends Plugin { print_hidden("method", "sendEmail"); $sth = $this->pdo->prepare("SELECT email, full_name FROM ttrss_users WHERE - id = ?"; + id = ?"); $sth->execute([$_SESSION['uid']]); if ($row = $sth->fetch()) { -- 2.39.2