Skip to content

Commit

Permalink
Fixing issue rails#2492 for master branch. ActionView::Base.field_err…
Browse files Browse the repository at this point in the history
…or_proc doesn't call for label.

objectify_options method should be applied to the proper options arg.

See explanation and example of the bug - https://github.com/kryzhovnik/rails_field_error_proc_bug_example
  • Loading branch information
kryzhovnik committed Mar 27, 2012
1 parent 67b2404 commit 6ce0a6d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
11 changes: 9 additions & 2 deletions actionpack/lib/action_view/helpers/form_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1117,10 +1117,17 @@ def fields_for(record_name, record_object = nil, fields_options = {}, &block)
@template.fields_for(record_name, record_object, fields_options, &block)
end

def label(method, text = nil, options = {}, &block)
@template.label(@object_name, method, text, objectify_options(options), &block)
def label(method, content_or_options = nil, options = {}, &block)
if content_or_options.is_a?(Hash)
content_or_options = objectify_options(content_or_options)
else
options = objectify_options(options)
end

@template.label(@object_name, method, content_or_options, options, &block)
end


def check_box(method, options = {}, checked_value = "1", unchecked_value = "0")
@template.check_box(@object_name, method, objectify_options(options), checked_value, unchecked_value)
end
Expand Down
22 changes: 22 additions & 0 deletions actionpack/test/template/form_helper_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1046,6 +1046,28 @@ def test_form_for_with_nil_index_option_override
assert_dom_equal expected, output_buffer
end

def test_form_for_label_error_wrapping_without_conventional_instance_variable
post = remove_instance_variable :@post
default_field_error_proc = ActionView::Base.field_error_proc
ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| "<div class='error'>#{html_tag}</div>".html_safe }

form_for(post) do |f|
concat f.label(:author_name, :class => 'label')
concat f.text_field(:author_name)
concat f.submit('Create post')
end

expected = whole_form('/posts/123', 'edit_post_123' , 'edit_post', 'patch') do
"<div class='error'><label for='post_author_name' class='label'>Author name</label></div>" +
"<div class='error'><input name='post[author_name]' type='text' id='post_author_name' value='' /></div>" +
"<input name='commit' type='submit' value='Create post' />"
end

assert_dom_equal expected, output_buffer
ensure
ActionView::Base.field_error_proc = default_field_error_proc
end

def test_form_for_with_namespace
form_for(@post, :namespace => 'namespace') do |f|
concat f.text_field(:title)
Expand Down

0 comments on commit 6ce0a6d

Please sign in to comment.