Replaces <option value=""></option> which is not HTML5 valid (#15191).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12237 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -91,6 +91,43 @@ end
|
||||
|
||||
ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| html_tag || ''.html_safe }
|
||||
|
||||
# HTML5: <option value=""></option> is invalid, use <option value=""> </option> instead
|
||||
module ActionView
|
||||
module Helpers
|
||||
class InstanceTag
|
||||
private
|
||||
def add_options_with_non_empty_blank_option(option_tags, options, value = nil)
|
||||
if options[:include_blank] == true
|
||||
options = options.dup
|
||||
options[:include_blank] = ' '.html_safe
|
||||
end
|
||||
add_options_without_non_empty_blank_option(option_tags, options, value)
|
||||
end
|
||||
alias_method_chain :add_options, :non_empty_blank_option
|
||||
end
|
||||
|
||||
module FormTagHelper
|
||||
def select_tag_with_non_empty_blank_option(name, option_tags = nil, options = {})
|
||||
if options.delete(:include_blank)
|
||||
options[:prompt] = ' '.html_safe
|
||||
end
|
||||
select_tag_without_non_empty_blank_option(name, option_tags, options)
|
||||
end
|
||||
alias_method_chain :select_tag, :non_empty_blank_option
|
||||
end
|
||||
|
||||
module FormOptionsHelper
|
||||
def options_for_select_with_non_empty_blank_option(container, selected = nil)
|
||||
if container.is_a?(Array)
|
||||
container = container.map {|element| element.blank? ? [" ".html_safe, ""] : element}
|
||||
end
|
||||
options_for_select_without_non_empty_blank_option(container, selected)
|
||||
end
|
||||
alias_method_chain :options_for_select, :non_empty_blank_option
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
require 'mail'
|
||||
|
||||
module DeliveryMethods
|
||||
|
||||
Reference in New Issue
Block a user