From: Jean-Philippe Lang Date: Wed, 26 Mar 2008 22:56:30 +0000 (+0000) Subject: Make the versions with the same date sorted by name (#864). X-Git-Tag: 0.7.0-RC1~10 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ecc742f3ce33fdea03c5d163a58aa32b62fc2567;p=redmine.git Make the versions with the same date sorted by name (#864). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1296 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/version.rb b/app/models/version.rb index 183500485..dc618af0f 100644 --- a/app/models/version.rb +++ b/app/models/version.rb @@ -89,11 +89,11 @@ class Version < ActiveRecord::Base def to_s; name end - # Versions are sorted by effective_date + # Versions are sorted by effective_date and name # Those with no effective_date are at the end, sorted by name def <=>(version) if self.effective_date - version.effective_date ? (self.effective_date <=> version.effective_date) : -1 + version.effective_date ? (self.effective_date == version.effective_date ? self.name <=> version.name : self.effective_date <=> version.effective_date) : -1 else version.effective_date ? 1 : (self.name <=> version.name) end