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

Remove dead code.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3061 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent ded602c8
Branches
Tags
No related merge requests found
...@@ -91,21 +91,6 @@ class Project < ActiveRecord::Base ...@@ -91,21 +91,6 @@ class Project < ActiveRecord::Base
def identifier_frozen? def identifier_frozen?
errors[:identifier].nil? && !(new_record? || identifier.blank?) errors[:identifier].nil? && !(new_record? || identifier.blank?)
end end
def issues_with_subprojects(include_subprojects=false)
conditions = nil
if include_subprojects
ids = [id] + descendants.collect(&:id)
conditions = ["#{Project.table_name}.id IN (#{ids.join(',')}) AND #{Project.visible_by}"]
end
conditions ||= ["#{Project.table_name}.id = ?", id]
# Quick and dirty fix for Rails 2 compatibility
Issue.send(:with_scope, :find => { :conditions => conditions }) do
Version.send(:with_scope, :find => { :conditions => conditions }) do
yield
end
end
end
# returns latest created projects # returns latest created projects
# non public projects will be returned only if user is a member of those # non public projects will be returned only if user is a member of those
......
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