diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-09 16:31:04 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-09 16:31:04 -0700 |
commit | e7233c0c94d0464994df94d8907518d49fcb0650 (patch) | |
tree | face7f2e2c8b6212349e769f6c552138006e1f1e /Zotlabs/Module/Contactgroup.php | |
parent | 2bdf135cbcf6208a4c2400d846b2fbffd8ae2c6b (diff) | |
download | volse-hubzilla-e7233c0c94d0464994df94d8907518d49fcb0650.tar.gz volse-hubzilla-e7233c0c94d0464994df94d8907518d49fcb0650.tar.bz2 volse-hubzilla-e7233c0c94d0464994df94d8907518d49fcb0650.zip |
more backquotes - this should take care of most except for the array import queries
Diffstat (limited to 'Zotlabs/Module/Contactgroup.php')
-rw-r--r-- | Zotlabs/Module/Contactgroup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Contactgroup.php b/Zotlabs/Module/Contactgroup.php index bbe56b4ad..2ba53517f 100644 --- a/Zotlabs/Module/Contactgroup.php +++ b/Zotlabs/Module/Contactgroup.php @@ -23,7 +23,7 @@ class Contactgroup extends \Zotlabs\Web\Controller { if((argc() > 1) && (intval(argv(1)))) { - $r = q("SELECT * FROM `groups` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1", + $r = q("SELECT * FROM groups WHERE id = %d AND uid = %d AND deleted = 0 LIMIT 1", intval(argv(1)), intval(local_channel()) ); |