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/search_ac.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/search_ac.php')
-rw-r--r-- | mod/search_ac.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mod/search_ac.php b/mod/search_ac.php index e42945d43..19c1dc940 100644 --- a/mod/search_ac.php +++ b/mod/search_ac.php @@ -42,8 +42,9 @@ function search_ac_init(&$a){ } } - $r = q("select distinct term, tid, url from term where type = %d $tag_sql_extra group by term order by term asc", - intval(TERM_HASHTAG) + $r = q("select distinct term, tid, url from term where type in ( %d, %d ) $tag_sql_extra group by term order by term asc", + intval(TERM_HASHTAG), + intval(TERM_COMMUNITYTAG) ); if(count($r)) { |