From: Jean-Philippe Lang Date: Thu, 21 Feb 2008 19:30:27 +0000 (+0000) Subject: Fixed: "undefined method 'textilizable'" error on email notification when running... X-Git-Tag: 0.7.0-RC1~120 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7d1075507221fb0fe1344ddd58f7ee7f485a203c;p=redmine.git 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 --- diff --git a/app/models/mailer.rb b/app/models/mailer.rb index a1357d89c..75a2e960b 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