From 0344719482d47c7e69761c6f2d550f3cd98efa93 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 29 Jun 2008 09:03:03 +0000 Subject: [PATCH] Makes importer work with Trac 0.8.x (#1540). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1597 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/tasks/migrate_from_trac.rake | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/tasks/migrate_from_trac.rake b/lib/tasks/migrate_from_trac.rake index 4226d79c0..50048634b 100644 --- a/lib/tasks/migrate_from_trac.rake +++ b/lib/tasks/migrate_from_trac.rake @@ -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 -- 2.39.5