From 0230fc96ec0807810c3e67fa4967daaf204d618e Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Tue, 6 Nov 2007 19:26:36 +0000 Subject: Disambiguate :size option for text area tag. Closes #8955 [redbeard] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8099 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/CHANGELOG | 2 ++ actionpack/lib/action_view/helpers/form_tag_helper.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'actionpack') diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 34b0421b67..a866c2a22b 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Disambiguate :size option for text area tag. Closes #8955 [redbeard] + * Fix broken tag in assert_tag documentation. Closes #9037 [mfazekas] * Add documentation for route conditions. Closes #9041 [innu, manfred] diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb index ab97fab250..1f5df205a1 100644 --- a/actionpack/lib/action_view/helpers/form_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb @@ -207,7 +207,7 @@ module ActionView # Creates a text input area; use a textarea for longer text inputs such as blog posts or descriptions. # # ==== Options - # * :size - A string specifying the dimensions of the textarea using dimensions (e.g., "25x10"). + # * :size - A string specifying the dimensions (columns by rows) of the textarea (e.g., "25x10"). # * :rows - Specify the number of rows in the textarea # * :cols - Specify the number of columns in the textarea # * :disabled - If set to true, the user will not be able to use this input. -- cgit v1.2.3