diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-11-20 00:15:48 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-11-20 00:15:48 -0800 |
commit | 301072a86cacd2620a08cf07f2cef55dffac3c2f (patch) | |
tree | e6f64f9e95be882bdb7afeb4939dc485d38d3527 /mod/network.php | |
parent | a44795e6c32d90d54e5a4321cad4ffe0f3409a09 (diff) | |
download | volse-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 'mod/network.php')
-rw-r--r-- | mod/network.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/network.php b/mod/network.php index 53de975a4..9f0604296 100644 --- a/mod/network.php +++ b/mod/network.php @@ -248,7 +248,7 @@ function network_content(&$a, $update = 0, $load = false) { $sql_extra .= protect_sprintf(term_query('item', $category, TERM_CATEGORY)); } if(x($hashtags)) { - $sql_extra .= protect_sprintf(term_query('item', $hashtags, TERM_HASHTAG)); + $sql_extra .= protect_sprintf(term_query('item', $hashtags, TERM_HASHTAG, TERM_COMMUNITYTAG)); } if(! $update) { @@ -313,7 +313,7 @@ function network_content(&$a, $update = 0, $load = false) { if(x($_GET,'search')) { $search = escape_tags($_GET['search']); if(strpos($search,'#') === 0) { - $sql_extra .= term_query('item',substr($search,1),TERM_HASHTAG); + $sql_extra .= term_query('item',substr($search,1),TERM_HASHTAG,TERM_COMMUNITYTAG); } else { $sql_extra .= sprintf(" AND item.body like '%s' ", |