mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #5792 from lest/patch-4
no need in temporary array in number_to_phone helper
This commit is contained in:
commit
6da500279b
1 changed files with 2 additions and 2 deletions
|
@ -74,11 +74,11 @@ module ActionView
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue