MrDys / blacklight

Blacklight Plugin
http://projectblacklight.org/
Other
1 stars 1 forks source link

With update to Rails 2.3.11, remove escape_key/escape_value hack from render_search_to_s_element (in favor of html_safe) #480

Closed MrDys closed 12 years ago

MrDys commented 12 years ago

CODEBASE-295: The current code allows the user to specify something like: render_search_to_s_element("key>", "value>", :escape_key => false, :escape_value => false)

The new way should use html_safe to get this functionality: render_search_to_s_element("key>".html_safe, "value>".html_safe)

MrDys commented 12 years ago

Original reporter: cbeer

MrDys commented 12 years ago

cbeer: Fixed in 3853edb