FIX: in:title search should only search through topic first posts.

This commit is contained in:
Guo Xiang Tan
2020-07-16 12:21:19 +08:00
parent 84de643c04
commit af87911178
2 changed files with 5 additions and 9 deletions

View File

@@ -847,6 +847,7 @@ class Search
# C is for tags
# D is for cooked
weights = @in_title ? 'A' : (SiteSetting.tagging_enabled ? 'ABCD' : 'ABD')
posts = posts.where(post_number: 1) if @in_title
posts = posts.where("post_search_data.search_data @@ #{ts_query(weight_filter: weights)}")
exact_terms = @term.scan(Regexp.new(PHRASE_MATCH_REGEXP_PATTERN)).flatten