diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-04-23 21:12:31 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-04-23 21:12:31 +0200 |
commit | d401e5e7c49606f0400d1f357e297df82b656120 (patch) | |
tree | 6832b6dbcd206b2de113b706304f7e1f85b3919c /Zotlabs | |
parent | 67ce5f4c9cda379d99a42d97f2d8c028edb0a998 (diff) | |
download | volse-hubzilla-d401e5e7c49606f0400d1f357e297df82b656120.tar.gz volse-hubzilla-d401e5e7c49606f0400d1f357e297df82b656120.tar.bz2 volse-hubzilla-d401e5e7c49606f0400d1f357e297df82b656120.zip |
possible fix for issue #1101
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Ping.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index 87f9ee78a..206b8c3d1 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -143,7 +143,7 @@ class Ping extends \Zotlabs\Web\Controller { $sql_extra = ''; if(! ($vnotify & VNOTIFY_LIKE)) - $sql_extra = ' AND verb NOT IN ("' . dbesc(ACTIVITY_LIKE) . '", "' . dbesc(ACTIVITY_DISLIKE) . '") '; + $sql_extra = " AND verb NOT IN ('" . dbesc(ACTIVITY_LIKE) . "', '" . dbesc(ACTIVITY_DISLIKE) . "') "; $discover_tab_on = can_view_public_stream(); |