aboutsummaryrefslogtreecommitdiffstats
path: root/include/feedutils.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-12-16 20:30:42 +0100
committerMario Vavti <mario@mariovavti.com>2017-12-16 20:33:43 +0100
commitdc90f103d4ea56d8825d7ae83548b21301ed900a (patch)
tree2c16c0ec502197a5cd1d3bff232400253c5db511 /include/feedutils.php
parent48db3a189f3a796104cc4cf538be27ed6fa20383 (diff)
downloadvolse-hubzilla-dc90f103d4ea56d8825d7ae83548b21301ed900a.tar.gz
volse-hubzilla-dc90f103d4ea56d8825d7ae83548b21301ed900a.tar.bz2
volse-hubzilla-dc90f103d4ea56d8825d7ae83548b21301ed900a.zip
fix undefined constant warning
Diffstat (limited to 'include/feedutils.php')
-rw-r--r--include/feedutils.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/feedutils.php b/include/feedutils.php
index 8f2c5d988..4638ef66a 100644
--- a/include/feedutils.php
+++ b/include/feedutils.php
@@ -1305,7 +1305,7 @@ function consume_feed($xml, $importer, &$contact, $pass = 0) {
// allow likes of comments
- if($item_parent_mid && activity_match($datarray['verb'],ACTVITY_LIKE)) {
+ if($item_parent_mid && activity_match($datarray['verb'],ACTIVITY_LIKE)) {
$datarray['thr_parent'] = $item_parent_mid[0]['parent_mid'];
}