mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add CHANGELOG entry for #11348
This commit is contained in:
parent
9eeb3cc040
commit
b18a27375a
1 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,17 @@
|
|||
* Fix `link_to` with block and url hashes.
|
||||
|
||||
Before:
|
||||
|
||||
link_to(action: 'bar', controller: 'foo') { content_tag(:span, 'Example site') }
|
||||
# => "<a action=\"bar\" controller=\"foo\"><span>Example site</span></a>"
|
||||
|
||||
After:
|
||||
|
||||
link_to(action: 'bar', controller: 'foo') { content_tag(:span, 'Example site') }
|
||||
# => "<a href=\"/\"><span>Example site</span></a>"
|
||||
|
||||
*Murahashi Sanemat Kenichi*
|
||||
|
||||
* Fix "Stack Level Too Deep" error when redering recursive partials.
|
||||
|
||||
Fixes #11340.
|
||||
|
|
Loading…
Reference in a new issue