Merge branch 'fix-pdo-mail-plugin' of JustAMacUser/tt-rss into master
This commit is contained in:
commit
2395dc3b04
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ class Mail extends Plugin {
|
||||||
print_hidden("method", "sendEmail");
|
print_hidden("method", "sendEmail");
|
||||||
|
|
||||||
$sth = $this->pdo->prepare("SELECT email, full_name FROM ttrss_users WHERE
|
$sth = $this->pdo->prepare("SELECT email, full_name FROM ttrss_users WHERE
|
||||||
id = " . $_SESSION["uid"]);
|
id = ?");
|
||||||
$sth->execute([$_SESSION['uid']]);
|
$sth->execute([$_SESSION['uid']]);
|
||||||
|
|
||||||
if ($row = $sth->fetch()) {
|
if ($row = $sth->fetch()) {
|
||||||
|
|
Loading…
Reference in a new issue