diff options
author | Andrew Manning <tamanning@zoho.com> | 2015-11-20 21:57:10 -0500 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2015-11-20 21:57:10 -0500 |
commit | fee85030933bd15788bde7c0e019803a27a55f84 (patch) | |
tree | a2755c3dbd77b3210f2420a162a28030e3fc2865 /mod/search_ac.php | |
parent | 6083cd255990c82380a85029b3951160eb558ac9 (diff) | |
parent | fabf7081d39481bb22ee27c4beaf96e5529168eb (diff) | |
download | volse-hubzilla-fee85030933bd15788bde7c0e019803a27a55f84.tar.gz volse-hubzilla-fee85030933bd15788bde7c0e019803a27a55f84.tar.bz2 volse-hubzilla-fee85030933bd15788bde7c0e019803a27a55f84.zip |
Merge branch 'master' of https://github.com/redmatrix/hubzilla into url-selected
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)) { |