ActionView::Base.field_error_proc = Proc.new do |html_tag, instance| message = Array(instance.error_message).join(', ') if html_tag =~ /class="checkbox"/ || ((html_tag !~ /type="checkbox"/) && (html_tag !~ /label/)) %(
#{html_tag}✖ #{message}
).html_safe else %(
#{html_tag}
).html_safe end end