From: Go MAEDA Date: Mon, 2 Dec 2019 01:37:49 +0000 (+0000) Subject: Fix that bookmarked and recently used projects are unexpectedly filtered by a search... X-Git-Tag: 4.2.0~1315 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=45fb27d5afaa6b274f34c60c31236c167b2d2ae0;p=redmine.git Fix that bookmarked and recently used projects are unexpectedly filtered by a search keyword after full-text search (#31355, #32503). Patch by Mizuki ISHIKAWA. git-svn-id: http://svn.redmine.org/redmine/trunk@19325 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index ab4849957..b76ade5d8 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -477,8 +477,9 @@ module ApplicationHelper def render_projects_for_jump_box(projects, selected=nil) jump_box = Redmine::ProjectJumpBox.new User.current - bookmarked = jump_box.bookmarked_projects(params[:q]) - recents = jump_box.recently_used_projects(params[:q]) + query = params[:q] if request.format.js? + bookmarked = jump_box.bookmarked_projects(query) + recents = jump_box.recently_used_projects(query) projects = projects - (recents + bookmarked) projects_label = (bookmarked.any? || recents.any?) ? :label_optgroup_others : :label_project_plural jump = params[:jump].presence || current_menu_item