]> source.dussan.org Git - redmine.git/commitdiff
Tests broken with ruby1.8.6 (#9751).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 8 Dec 2011 18:50:15 +0000 (18:50 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Thu, 8 Dec 2011 18:50:15 +0000 (18:50 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8128 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/query.rb

index 3e2fec29d8740a3e9d25efd423cd016e8d87ea5a..fad42fcb2f2cc9f8ee4d6b5d980689c08a33ed93 100644 (file)
@@ -363,7 +363,8 @@ class Query < ActiveRecord::Base
                            ).collect {|cf| QueryCustomFieldColumn.new(cf) }
 
     if User.current.allowed_to?(:view_time_entries, project, :global => true)
-      index = @available_columns.index {|column| column.name == :estimated_hours}
+      index = nil
+      @available_columns.each_with_index {|column, i| index = i if column.name == :estimated_hours}
       index = (index ? index + 1 : -1)
       # insert the column after estimated_hours or at the end
       @available_columns.insert index, QueryColumn.new(:spent_hours,