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 /boot.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 'boot.php')
-rw-r--r-- | boot.php | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1358,3 +1358,17 @@ function like_puller($a,$item,&$arr,$mode) { return; }} + +function get_mentions($item) { + $o = ''; + if(! strlen($item['tag'])) + return $o; + + $arr = explode(',',$item['tag']); + foreach($arr as $x) { + $matches = null; + if(preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) + $o .= "\t\t" . '<link rel="mentioned" href="' . $matches[1] . '" />' . "\r\n"; + } + return $o; +}
\ No newline at end of file |