aboutsummaryrefslogtreecommitdiffstats
path: root/include/notifier.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-10-31 21:57:30 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-10-31 21:57:30 -0700
commit4f4d6bace60fa3f43efeb675ba4f1617a9d9df58 (patch)
treeffad8f6faf4c42def511898377dd39e031a73d8b /include/notifier.php
parentb376f215337e4bee7320a0df8fc3d9b1beb2f289 (diff)
downloadvolse-hubzilla-4f4d6bace60fa3f43efeb675ba4f1617a9d9df58.tar.gz
volse-hubzilla-4f4d6bace60fa3f43efeb675ba4f1617a9d9df58.tar.bz2
volse-hubzilla-4f4d6bace60fa3f43efeb675ba4f1617a9d9df58.zip
add rel=mentioned links for tagged persons
Diffstat (limited to 'include/notifier.php')
-rw-r--r--include/notifier.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/notifier.php b/include/notifier.php
index 884493a79..1f6bfa36a 100644
--- a/include/notifier.php
+++ b/include/notifier.php
@@ -213,6 +213,7 @@
$verb = construct_verb($item);
$actobj = construct_activity($item);
+ $mentioned = get_mentions($item);
if($item['id'] == $item_id) {
$slap = replace_macros($cmnt_template, array(
@@ -231,6 +232,7 @@
'$type' => 'html',
'$verb' => xmlify($verb),
'$actobj' => $actobj,
+ '$mentioned' => $mentioned,
'$alt' => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
'$content' => xmlify(bbcode($item['body'])),
'$parent_id' => xmlify($item['parent-uri']),
@@ -253,6 +255,7 @@
'$type' => 'text',
'$verb' => xmlify($verb),
'$actobj' => $actobj,
+ '$mentioned' => $mentioned,
'$alt' => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
'$content' => xmlify($item['body']),
'$parent_id' => xmlify($item['parent-uri']),
@@ -283,6 +286,7 @@
$verb = construct_verb($item);
$actobj = construct_activity($item);
+ $mentioned = get_mentions($item);
if($item['parent'] == $item['id']) {
$atom .= replace_macros($item_template, array(
@@ -301,6 +305,7 @@
'$type' => 'text',
'$verb' => xmlify($verb),
'$actobj' => $actobj,
+ '$mentioned' => $mentioned,
'$content' => xmlify($item['body']),
'$alt' => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
'$comment_allow' => (($item['last-child']) ? 1 : 0)
@@ -321,6 +326,7 @@
'$type' => 'html',
'$verb' => xmlify($verb),
'$actobj' => $actobj,
+ '$mentioned' => $mentioned,
'$content' => xmlify(bbcode($item['body'])),
'$alt' => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
'$comment_allow' => (($item['last-child']) ? 1 : 0)
@@ -343,6 +349,7 @@
'$type' => 'text',
'$verb' => xmlify($verb),
'$actobj' => $actobj,
+ '$mentioned' => $mentioned,
'$parent_id' => xmlify($item['parent-uri']),
'$comment_allow' => (($item['last-child']) ? 1 : 0)
));
@@ -361,6 +368,7 @@
'$type' => 'html',
'$verb' => xmlify($verb),
'$actobj' => $actobj,
+ '$mentioned' => $mentioned,
'$parent_id' => xmlify($item['parent-uri']),
'$comment_allow' => (($item['last-child']) ? 1 : 0)
));