Makes importer work with Trac 0.8.x (#1540).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1597 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2008-06-29 09:03:03 +00:00
parent 22c9a43899
commit 0344719482
1 changed files with 5 additions and 0 deletions

View File

@ -98,6 +98,11 @@ namespace :redmine do
nil
end
end
def description
# Attribute is named descr in Trac v0.8.x
has_attribute?(:descr) ? read_attribute(:descr) : read_attribute(:description)
end
end
class TracTicketCustom < ActiveRecord::Base