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/text.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/text.php')
-rwxr-xr-x | include/text.php | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/include/text.php b/include/text.php index db29697f9..2d29dff31 100755 --- a/include/text.php +++ b/include/text.php @@ -1023,19 +1023,24 @@ function prepare_body($item,$attach = false) { $s .= '<div class="clear"></div></div>'; } - if(is_array($item['term']) && count($item['term'])) { - $tstr = ''; - foreach($item['term'] as $t) { - $t1 = format_term_for_display($t); - if($t1) { - if($tstr) - $tstr .= ' '; - $tstr .= $t1; - } - } - if($tstr) - $s .= '<br /><div class="posttags">' . $tstr . '</div>'; - } +// At some point in time, posttags were removed from the threaded conversation templates, but remained in the search_item template. +// Code to put them back was added into include/conversation.php and/or include/ItemObject.php but under new class names +// Then it was discovered that the following bits remained of the old code. +// Commented out, but we may decide to use this instead of the other version and put all the tag rendering in one place. In the other +// location it is more theme-able. +// if(is_array($item['term']) && count($item['term'])) { +// $tstr = ''; +// foreach($item['term'] as $t) { +// $t1 = format_term_for_display($t); +// if($t1) { +// if($tstr) +// $tstr .= ' '; +// $tstr .= $t1; +// } +// } +// if($tstr) +// $s .= '<br /><div class="posttags">' . $tstr . '</div>'; +// } $writeable = ((get_observer_hash() == $item['owner_xchan']) ? true : false); |