summaryrefslogtreecommitdiffstats
path: root/app/models
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-09-26 17:35:18 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-09-26 17:35:18 +0000
commit83bfb8cd2b0a877f89102ec5d2fe1bf481e7d9a3 (patch)
treec310f10c691bda26025840570fe8e221d1081138 /app/models
parent768d67f27bf6804ec52afae7cefc2724ff9af654 (diff)
downloadredmine-83bfb8cd2b0a877f89102ec5d2fe1bf481e7d9a3.tar.gz
redmine-83bfb8cd2b0a877f89102ec5d2fe1bf481e7d9a3.zip
Revert "Fixed: gantt broken when no due date on project issues and versions."
It broke the tests for overdue projects and isn't a good way to fix #6350 because it makes an assumption that a project is due Today and will still error if issue tracking is disabled. This reverts commit a7fd592db4037d635d04ca5ce3f01d0af3f0c8ae. (r4178) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4184 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models')
-rw-r--r--app/models/project.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/models/project.rb b/app/models/project.rb
index 29be68c70..4b0236b37 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -432,14 +432,13 @@ class Project < ActiveRecord::Base
end
end
- # The latest due date of an issue or version, otherwise today
+ # The latest due date of an issue or version
def due_date
if module_enabled?(:issue_tracking)
[
issues.maximum('due_date'),
shared_versions.collect(&:effective_date),
- shared_versions.collect {|v| v.fixed_issues.maximum('due_date')},
- Date.today
+ shared_versions.collect {|v| v.fixed_issues.maximum('due_date')}
].flatten.compact.max
end
end