diff options
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/helpers/form_helper.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb index b0793d0b91..63bb4ce32f 100644 --- a/actionview/lib/action_view/helpers/form_helper.rb +++ b/actionview/lib/action_view/helpers/form_helper.rb @@ -69,7 +69,8 @@ module ActionView # controller gets a nested hash <tt>params[:person]</tt> with the person attributes # set in the form. That hash is ready to be passed to <tt>Person.create</tt>: # - # if @person = Person.create(params[:person]) + # @person = Person.create(params[:person]) + # if @person.valid? # # success # else # # error handling |