diff options
author | friendica <info@friendica.com> | 2013-07-09 22:48:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-09 22:48:34 -0700 |
commit | 5a8cda632b4ba78e19d49b0c652f43940a18ea9e (patch) | |
tree | 9deb0b6fe56ef3e831abe6445a94879d0eabc60d /include/conversation.php | |
parent | 69d9ec9a948be459886008f21b40f726cf74d8c4 (diff) | |
download | volse-hubzilla-5a8cda632b4ba78e19d49b0c652f43940a18ea9e.tar.gz volse-hubzilla-5a8cda632b4ba78e19d49b0c652f43940a18ea9e.tar.bz2 volse-hubzilla-5a8cda632b4ba78e19d49b0c652f43940a18ea9e.zip |
remove double tags on search results, updates to install doco to get rid of Friendica name there and clarify Red requirements.
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/conversation.php b/include/conversation.php index 410143a7a..1023c068d 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -584,17 +584,6 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') { $tags=array(); $hashtags = array(); $mentions = array(); - foreach(explode(',',$item['tag']) as $tag){ - $tag = trim($tag); - if ($tag!="") { - $t = bbcode($tag); - $tags[] = $t; - if($t[0] == '#') - $hashtags[] = $t; - elseif($t[0] == '@') - $mentions[] = $t; - } - } $sp = false; $profile_link = best_link_url($item,$sp); @@ -650,7 +639,6 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') { $tmp_item = array( 'template' => $tpl, 'toplevel' => 'toplevel_item', - 'tags' => $tags, 'id' => (($preview) ? 'P0' : $item['item_id']), 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, $profile_url), 'profile_url' => $profile_link, |