diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-02 19:00:00 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-02 19:00:00 +0000 |
commit | 1951c6a3fdc00853053c638b728c358931f8c017 (patch) | |
tree | 710dbd57a569412fdb4fd1980e40c5a2f825b2e4 | |
parent | def118b42a82dea119c7449919ec994808169031 (diff) | |
download | redmine-1951c6a3fdc00853053c638b728c358931f8c017.tar.gz redmine-1951c6a3fdc00853053c638b728c358931f8c017.zip |
Removed unused instance variable.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10913 e93f8b46-1217-0410-a6f0-8f06a7374b81
-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) |