aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-11-20 00:15:48 -0800
committerredmatrix <redmatrix@redmatrix.me>2015-11-20 00:15:48 -0800
commit301072a86cacd2620a08cf07f2cef55dffac3c2f (patch)
treee6f64f9e95be882bdb7afeb4939dc485d38d3527 /include/text.php
parenta44795e6c32d90d54e5a4321cad4ffe0f3409a09 (diff)
downloadvolse-hubzilla-301072a86cacd2620a08cf07f2cef55dffac3c2f.tar.gz
volse-hubzilla-301072a86cacd2620a08cf07f2cef55dffac3c2f.tar.bz2
volse-hubzilla-301072a86cacd2620a08cf07f2cef55dffac3c2f.zip
issue #85, community tags and file tags lost during edits. This required splitting off communitytags as a separate tag type and is not backward compatible. Community tags on older posts or those federated from redmatrix clones will not be preserved during edits.
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index 4053c15b2..7c8834fc8 100644
--- a/include/text.php
+++ b/include/text.php
@@ -1298,7 +1298,7 @@ function format_categories(&$item,$writeable) {
function format_hashtags(&$item) {
$s = '';
- $terms = get_terms_oftype($item['term'], TERM_HASHTAG);
+ $terms = get_terms_oftype($item['term'], array(TERM_HASHTAG,TERM_COMMUNITYTAG));
if($terms) {
foreach($terms as $t) {
$term = htmlspecialchars($t['term'], ENT_COMPAT, 'UTF-8', false) ;