From 7d1075507221fb0fe1344ddd58f7ee7f485a203c Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Thu, 21 Feb 2008 19:30:27 +0000 Subject: [PATCH] Fixed: "undefined method 'textilizable'" error on email notification when running Repository#fetch_changesets from the console. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1167 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/mailer.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/models/mailer.rb b/app/models/mailer.rb index a1357d89..75a2e960 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -16,9 +16,9 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. class Mailer < ActionMailer::Base - helper ApplicationHelper - helper IssuesHelper - helper CustomFieldsHelper + helper :application + helper :issues + helper :custom_fields include ActionController::UrlWriter