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/Extend | |
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/Extend')
-rw-r--r-- | Zotlabs/Extend/Hook.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Zotlabs/Extend/Hook.php b/Zotlabs/Extend/Hook.php index fc1e95367..fef3ebe9b 100644 --- a/Zotlabs/Extend/Hook.php +++ b/Zotlabs/Extend/Hook.php @@ -10,7 +10,7 @@ class Hook { $function = serialize($function); } - $r = q("SELECT * FROM `hook` WHERE `hook` = '%s' AND `file` = '%s' AND `fn` = '%s' and priority = %d and hook_version = %d LIMIT 1", + $r = q("SELECT * FROM hook WHERE hook = '%s' AND file = '%s' AND fn = '%s' and priority = %d and hook_version = %d LIMIT 1", dbesc($hook), dbesc($file), dbesc($function), @@ -23,13 +23,13 @@ class Hook { // To aid in upgrade and transition, remove old settings for any registered hooks that match in all respects except // for priority or hook_version - $r = q("DELETE FROM `hook` where `hook` = '%s' and `file` = '%s' and `fn` = '%s'", + $r = q("DELETE FROM hook where hook = '%s' and file = '%s' and fn = '%s'", dbesc($hook), dbesc($file), dbesc($function) ); - $r = q("INSERT INTO `hook` (`hook`, `file`, `fn`, `priority`, `hook_version`) VALUES ( '%s', '%s', '%s', %d, %d )", + $r = q("INSERT INTO hook (hook, file, fn, priority, hook_version) VALUES ( '%s', '%s', '%s', %d, %d )", dbesc($hook), dbesc($file), dbesc($function), @@ -44,7 +44,7 @@ class Hook { if(is_array($function)) { $function = serialize($function); } - $r = q("DELETE FROM hook WHERE hook = '%s' AND `file` = '%s' AND `fn` = '%s' and priority = %d and hook_version = %d", + $r = q("DELETE FROM hook WHERE hook = '%s' AND file = '%s' AND fn = '%s' and priority = %d and hook_version = %d", dbesc($hook), dbesc($file), dbesc($function), @@ -60,7 +60,7 @@ class Hook { static public function unregister_by_file($file) { - $r = q("DELETE FROM hook WHERE `file` = '%s' ", + $r = q("DELETE FROM hook WHERE file = '%s' ", dbesc($file) ); |