aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Notifier.php
diff options
context:
space:
mode:
authorredmatrix <mike@macgirvin.com>2016-10-03 19:47:36 -0700
committerredmatrix <mike@macgirvin.com>2016-10-03 19:47:36 -0700
commitbad5057a7414eba7f7133538dd671a1413be00e3 (patch)
tree93ebd1c119757e01c906abda611ed2e6c7b32e24 /Zotlabs/Daemon/Notifier.php
parentfe7b7773ba9630a72d01c68dcdbc23eeced70b1b (diff)
downloadvolse-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.php2
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) {