Performance: avoid one "SELECT 1 ..." query per project on user memberships form.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11510 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a140a03a35
commit
cfcc9069e5
@ -343,7 +343,7 @@ module ApplicationHelper
|
||||
def options_for_membership_project_select(principal, projects)
|
||||
options = content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---")
|
||||
options << project_tree_options_for_select(projects) do |p|
|
||||
{:disabled => principal.projects.include?(p)}
|
||||
{:disabled => principal.projects.to_a.include?(p)}
|
||||
end
|
||||
options
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user