aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_options_helper.rb
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-03-09 23:41:39 -0800
committerwycats <wycats@gmail.com>2010-03-09 23:44:12 -0800
commit7b622786fcc5046a06989ec7a3cbf46f92e04dea (patch)
tree9a252d22deab3b5571f5dec50829f8c3e42b7ce6 /actionpack/lib/action_view/helpers/form_options_helper.rb
parent4464b8e87bedd69816d4658c9386cc360affb62e (diff)
downloadrails-7b622786fcc5046a06989ec7a3cbf46f92e04dea.tar.gz
rails-7b622786fcc5046a06989ec7a3cbf46f92e04dea.tar.bz2
rails-7b622786fcc5046a06989ec7a3cbf46f92e04dea.zip
Make form helpers work with <%=
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_options_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_options_helper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/form_options_helper.rb b/actionpack/lib/action_view/helpers/form_options_helper.rb
index 7f74be27cb..7039ecd233 100644
--- a/actionpack/lib/action_view/helpers/form_options_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_options_helper.rb
@@ -97,7 +97,9 @@ module ActionView
# </select>
#
module FormOptionsHelper
+ # ERB::Util can mask some helpers like textilize. Make sure to include them.
include ERB::Util
+ include TextHelper
# Create a select tag and a series of contained option tags for the provided object and method.
# The option currently held by the object will be selected, provided that the object is available.