aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
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:13:09 +0200
commit2dff10564c66ceb9f199d4edc936a542c28f5104 (patch)
tree99cf44743372faabf33a59b3b02f90d1091ae21d /Zotlabs/Module
parent9ac67b44e42f433e34f60556e631b7573a83eb50 (diff)
downloadvolse-hubzilla-2dff10564c66ceb9f199d4edc936a542c28f5104.tar.gz
volse-hubzilla-2dff10564c66ceb9f199d4edc936a542c28f5104.tar.bz2
volse-hubzilla-2dff10564c66ceb9f199d4edc936a542c28f5104.zip
possible fix for issue #1101
Diffstat (limited to 'Zotlabs/Module')
-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();