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/Lib/Enotify.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/Lib/Enotify.php')
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index 9a8628968..ccb014255 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -364,7 +364,7 @@ class Enotify { do { $dups = false; $hash = random_string(); - $r = q("SELECT `id` FROM `notify` WHERE `hash` = '%s' LIMIT 1", + $r = q("SELECT id FROM notify WHERE hash = '%s' LIMIT 1", dbesc($hash)); if ($r) $dups = true; |