diff options
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/helpers/text_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/text_helper.rb b/actionpack/lib/action_view/helpers/text_helper.rb index e60f6c2986..1698598edb 100644 --- a/actionpack/lib/action_view/helpers/text_helper.rb +++ b/actionpack/lib/action_view/helpers/text_helper.rb @@ -35,7 +35,7 @@ module ActionView def truncate(text, length = 30, truncate_string = "...") if text.nil? then return end l = length - truncate_string.chars.length - text.chars.length > length ? text.chars[0...l] + truncate_string : text + (text.chars.length > length ? text.chars[0...l] + truncate_string : text).to_s end # Highlights +phrase+ everywhere it is found in +text+ by inserting it into |