##// END OF EJS Templates
Add params to Redmine::Search::Fetcher#initialize optional parameter (#23153)....
Jean-Philippe Lang -
r15201:48a79bc0938c
parent child
Show More
@@ -68,7 +68,7 class SearchController < ApplicationController
68 fetcher = Redmine::Search::Fetcher.new(
68 fetcher = Redmine::Search::Fetcher.new(
69 @question, User.current, @scope, projects_to_search,
69 @question, User.current, @scope, projects_to_search,
70 :all_words => @all_words, :titles_only => @titles_only, :attachments => @search_attachments, :open_issues => @open_issues,
70 :all_words => @all_words, :titles_only => @titles_only, :attachments => @search_attachments, :open_issues => @open_issues,
71 :cache => params[:page].present?
71 :cache => params[:page].present?, :params => params
72 )
72 )
73
73
74 if fetcher.tokens.present?
74 if fetcher.tokens.present?
General Comments 0
You need to be logged in to leave comments. Login now