diff options
author | redmatrix <mike@macgirvin.com> | 2016-10-03 19:47:36 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-10-03 19:47:36 -0700 |
commit | bad5057a7414eba7f7133538dd671a1413be00e3 (patch) | |
tree | 93ebd1c119757e01c906abda611ed2e6c7b32e24 /Zotlabs/Daemon/Notifier.php | |
parent | fe7b7773ba9630a72d01c68dcdbc23eeced70b1b (diff) | |
download | volse-hubzilla-bad5057a7414eba7f7133538dd671a1413be00e3.tar.gz volse-hubzilla-bad5057a7414eba7f7133538dd671a1413be00e3.tar.bz2 volse-hubzilla-bad5057a7414eba7f7133538dd671a1413be00e3.zip |
start removing db backticks
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index c0997138e..441997db9 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -120,7 +120,7 @@ class Notifier { $normal_mode = false; $mail = true; $private = true; - $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1", + $message = q("SELECT * FROM mail WHERE id = %d LIMIT 1", intval($item_id) ); if(! $message) { |