Skip to content

Commit

Permalink
join strings rather than resizing buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Oct 18, 2010
1 parent 330327e commit 081e15f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionpack/lib/action_view/helpers/number_helper.rb
Expand Up @@ -70,11 +70,11 @@ def number_to_phone(number, options = {})
number.slice!(0, 1) if number.starts_with?('-')
end

str = ""
str = []
str << "+#{country_code}#{delimiter}" unless country_code.blank?
str << number
str << " x #{extension}" unless extension.blank?
ERB::Util.html_escape(str)
ERB::Util.html_escape(str.join)
end

# Formats a +number+ into a currency string (e.g., $13.65). You can customize the format
Expand Down

0 comments on commit 081e15f

Please sign in to comment.