This project is archived and is in readonly mode.

#4765 ✓resolved
Bruno Michel

Link_to should escape & in the query string

Reported by Bruno Michel | June 4th, 2010 @ 02:33 PM | in 3.0.2

Hi,

the link_to helper should escape & in the query string to&. This is the behaviour described in the help of link_to:

link_to "Nonsense search", searches_path(:foo => "bar", :baz => "quux")
# => <a href="/searches?foo=bar&amp;baz=quux">Nonsense search</a>

But, it seems to be not the case. For example, one test case in actionpack/test/template/url_helper_test.rb (line 349 in master) asserts that:

assert_equal %{<a href="/?order=desc&page=2\">Showing</a>},
  link_to_unless_current("Showing", hash_for(:order => "desc", :page => 2))

If someone can confirm this bug, I'll make a patch with tests.

Comments and changes to this ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile »

<h2 style="font-size: 14px">Tickets have moved to Github</h2>

The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>

Referenced by

Pages