diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-31 21:57:30 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-31 21:57:30 -0700 |
commit | 4f4d6bace60fa3f43efeb675ba4f1617a9d9df58 (patch) | |
tree | ffad8f6faf4c42def511898377dd39e031a73d8b /include/items.php | |
parent | b376f215337e4bee7320a0df8fc3d9b1beb2f289 (diff) | |
download | volse-hubzilla-4f4d6bace60fa3f43efeb675ba4f1617a9d9df58.tar.gz volse-hubzilla-4f4d6bace60fa3f43efeb675ba4f1617a9d9df58.tar.bz2 volse-hubzilla-4f4d6bace60fa3f43efeb675ba4f1617a9d9df58.zip |
add rel=mentioned links for tagged persons
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index d37f7708f..7f62f6dec 100644 --- a/include/items.php +++ b/include/items.php @@ -187,6 +187,7 @@ function get_feed_for(&$a, $dfrn_id, $owner_id, $last_update, $direction = 0) { else { $verb = construct_verb($item); $actobj = construct_activity($item); + $mentioned = get_mentions($item); if($item['parent'] == $item['id']) { $atom .= replace_macros($item_template, array( @@ -207,6 +208,7 @@ function get_feed_for(&$a, $dfrn_id, $owner_id, $last_update, $direction = 0) { '$content' => xmlify($item['body']), '$verb' => xmlify($verb), '$actobj' => $actobj, // do not xmlify + '$mentioned' => $mentioned, '$comment_allow' => $allow )); } @@ -224,6 +226,7 @@ function get_feed_for(&$a, $dfrn_id, $owner_id, $last_update, $direction = 0) { '$alt' => xmlify($a->get_baseurl() . '/display/' . $owner_nick . '/' . $item['id']), '$verb' => xmlify($verb), '$actobj' => $actobj, // do not xmlify + '$mentioned' => $mentioned, '$parent_id' => xmlify($item['parent-uri']), '$comment_allow' => $allow )); |