aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_tag_helper.rb
diff options
context:
space:
mode:
authorNicholas Yianilos <spartandeveloper@gmail.com>2012-05-03 09:41:29 -0400
committerNicholas Yianilos <spartandeveloper@gmail.com>2012-05-03 09:41:29 -0400
commit95960767447b9ba7232ec1c85e08093bb4b9dd07 (patch)
tree683c6826b1b8d0509cea4f0719ee93aeaf63c207 /actionpack/lib/action_view/helpers/form_tag_helper.rb
parent9de9e6a278d1a8dd3f2ceb2d9f8d5bbd3680bd76 (diff)
downloadrails-95960767447b9ba7232ec1c85e08093bb4b9dd07.tar.gz
rails-95960767447b9ba7232ec1c85e08093bb4b9dd07.tar.bz2
rails-95960767447b9ba7232ec1c85e08093bb4b9dd07.zip
refactored extracting :size => 'XxY' into an extract_size! method
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_tag_helper.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb
index b5e0970612..1dcf3621f0 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -317,9 +317,7 @@ module ActionView
def text_area_tag(name, content = nil, options = {})
options = options.stringify_keys
- if size = options.delete("size")
- options["cols"], options["rows"] = size.split("x") if size.respond_to?(:split)
- end
+ extract_size!(options, 'cols', 'rows')
escape = options.delete("escape") { true }
content = ERB::Util.html_escape(content) if escape