Skip to content
Snippets Groups Projects
Commit a68d8a7b authored by Jean-Philippe Lang's avatar Jean-Philippe Lang
Browse files

Sets the current project as the default value of project jump box (#4053).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2959 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 2cec9f87
Branches
Tags
No related merge requests found
......@@ -147,9 +147,9 @@ module ApplicationHelper
projects = User.current.projects.all
if projects.any?
s = '<select onchange="if (this.value != \'\') { window.location = this.value; }">' +
"<option value='' selected='selected'>#{ l(:label_jump_to_a_project) }</option>" +
"<option value=''>#{ l(:label_jump_to_a_project) }</option>" +
'<option value="" disabled="disabled">---</option>'
s << project_tree_options_for_select(projects) do |p|
s << project_tree_options_for_select(projects, :selected => @project) do |p|
{ :value => url_for(:controller => 'projects', :action => 'show', :id => p, :jump => current_menu_item) }
end
s << '</select>'
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment