diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-12-16 20:30:42 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-12-16 20:33:43 +0100 |
commit | dc90f103d4ea56d8825d7ae83548b21301ed900a (patch) | |
tree | 2c16c0ec502197a5cd1d3bff232400253c5db511 /include/feedutils.php | |
parent | 48db3a189f3a796104cc4cf538be27ed6fa20383 (diff) | |
download | volse-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.php | 2 |
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']; } |