Skip to content

Commit

Permalink
no need in temporary array in number_to_phone helper
Browse files Browse the repository at this point in the history
  • Loading branch information
lest committed Apr 9, 2012
1 parent 84adc21 commit 332c3e1
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 @@ -74,11 +74,11 @@ def number_to_phone(number, options = {})
number.slice!(0, 1) if number.start_with?(delimiter) && !delimiter.blank?
end

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

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

0 comments on commit 332c3e1

Please sign in to comment.