]> git.wh0rd.org - tt-rss.git/commitdiff
Fix missing parenthesis.
authorDave Z <donotreply@example.com>
Mon, 1 Jan 2018 23:59:28 +0000 (18:59 -0500)
committerDave Z <donotreply@example.com>
Mon, 1 Jan 2018 23:59:28 +0000 (18:59 -0500)
plugins/mail/init.php

index 7da87ed575b5610a184eda96385948d91a5ab86d..28e160541063718607b603f157a60aeae14ae48d 100644 (file)
@@ -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()) {