aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-04-23 21:12:31 +0200
committerMario Vavti <mario@mariovavti.com>2018-04-23 21:12:31 +0200
commitd401e5e7c49606f0400d1f357e297df82b656120 (patch)
tree6832b6dbcd206b2de113b706304f7e1f85b3919c /Zotlabs
parent67ce5f4c9cda379d99a42d97f2d8c028edb0a998 (diff)
downloadvolse-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.php2
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();