From: Toshi MARUYAMA Date: Thu, 6 Feb 2014 03:34:45 +0000 (+0000) Subject: Rails4: replace ActionView::Helpers::TextHelper#truncate by String#truncate at Applic... X-Git-Tag: 2.5.0~66 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=16211f9a5bf6b4fa6c067bd4e447b6e466013ab6;p=redmine.git Rails4: replace ActionView::Helpers::TextHelper#truncate by String#truncate at ApplicationHelper#link_to_message git-svn-id: http://svn.redmine.org/redmine/trunk@12834 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 8f6442d28..9c2a622ac 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -118,7 +118,7 @@ module ApplicationHelper # Generates a link to a message def link_to_message(message, options={}, html_options = nil) link_to( - truncate(message.subject, :length => 60), + message.subject.truncate(60), board_message_path(message.board_id, message.parent_id || message.id, { :r => (message.parent_id && message.id), :anchor => (message.parent_id ? "message-#{message.id}" : nil)