From ae087d7578564a2b2ed40da7e38d840c39751312 2014-02-06 03:34:27 From: Toshi MARUYAMA Date: 2014-02-06 03:34:27 Subject: [PATCH] Rails4: replace ActionView::Helpers::TextHelper#truncate by String#truncate at ApplicationHelper#parse_redmine_links git-svn-id: http://svn.redmine.org/redmine/trunk@12833 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index e4e9297..8f6442d 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -781,7 +781,7 @@ module ApplicationHelper {:only_path => only_path, :controller => 'issues', :action => 'show', :id => oid, :anchor => anchor}, :class => issue.css_classes, - :title => "#{truncate(issue.subject, :length => 100)} (#{issue.status.name})") + :title => "#{issue.subject.truncate(100)} (#{issue.status.name})") end when 'document' if document = Document.visible.find_by_id(oid)