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:30:42 +0100 |
commit | d30482197781eb8e68443e78b9f8d8727815a39a (patch) | |
tree | 2a380db4e3385c4b6fa3b692f48ff36f9d7ef1a2 /include/feedutils.php | |
parent | a3d39b223de620ae61e1ea18dae35eeeea71df4e (diff) | |
download | volse-hubzilla-d30482197781eb8e68443e78b9f8d8727815a39a.tar.gz volse-hubzilla-d30482197781eb8e68443e78b9f8d8727815a39a.tar.bz2 volse-hubzilla-d30482197781eb8e68443e78b9f8d8727815a39a.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']; } |