diff options
-rw-r--r-- | app/controllers/projects_controller.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index dc646eb32..3c1e6ba0a 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -110,9 +110,6 @@ class ProjectsController < ApplicationController def copy @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position") @trackers = Tracker.sorted.all - @root_projects = Project.find(:all, - :conditions => "parent_id IS NULL AND status = #{Project::STATUS_ACTIVE}", - :order => 'name') @source_project = Project.find(params[:id]) if request.get? @project = Project.copy_from(@source_project) |