diff options
author | redmatrix <git@macgirvin.com> | 2016-02-24 11:20:46 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-24 11:20:46 -0800 |
commit | b101a8f6fb3fd3ec0d5466ba1bb7bc9dc9480fba (patch) | |
tree | 88ba8e488264e2cc829d6ad8bae373a46c9fa7b4 /include/items.php | |
parent | d074c538897532a4ff7945c1e725c64ac264d5c2 (diff) | |
download | volse-hubzilla-b101a8f6fb3fd3ec0d5466ba1bb7bc9dc9480fba.tar.gz volse-hubzilla-b101a8f6fb3fd3ec0d5466ba1bb7bc9dc9480fba.tar.bz2 volse-hubzilla-b101a8f6fb3fd3ec0d5466ba1bb7bc9dc9480fba.zip |
missing function
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 1b8824793..bb4d1108e 100755 --- a/include/items.php +++ b/include/items.php @@ -4132,7 +4132,7 @@ function atom_entry($item,$type,$author,$owner,$comment = false,$cid = 0) { $o .= '<thr:in-reply-to ref="' . xmlify($parent_item) . '" type="text/html" href="' . xmlify($item['plink']) . '" />' . "\r\n"; } - if(activity_compare($item['obj_type'],ACTIVITY_OBJ_EVENT) && activity_compare($item['verb'],ACTIVITY_POST)) { + if(activity_match($item['obj_type'],ACTIVITY_OBJ_EVENT) && activity_match($item['verb'],ACTIVITY_POST)) { $obj = ((is_array($item['obj'])) ? $item['object'] : json_decode($item['object'],true)); $o .= '<title>' . xmlify($item['title']) . '</title>' . "\r\n"; |