From 756b9b59a794ef259007074b4d5718a66a7378d6 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Mon, 17 Oct 2011 01:14:48 +0300 Subject: fix #132 --- app/helpers/commits_helper.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'app') diff --git a/app/helpers/commits_helper.rb b/app/helpers/commits_helper.rb index 4e7de84fc58..b79e5718194 100644 --- a/app/helpers/commits_helper.rb +++ b/app/helpers/commits_helper.rb @@ -22,10 +22,12 @@ module CommitsHelper :remote => true, :class => "lite_button vm", :style => "text-align:center; width:930px; ", :id => "more-commits-link" end + # Cause some errors with trucate & encoding use this method def truncate_commit_message(commit, size = 60) - truncate(commit.message, :length => size) + message = commit.message + message.length > size ? (message[0..(size - 1)] + "...") : message # if special characters occurs rescue - commit.message.length > size ? (commit.message[0..(size - 1)] + "...") : commit.message + commit.message end end -- cgit v1.2.3