This project is archived and is in readonly mode.
[PATCH] Documentation of block helpers need to be updated
Reported by Jeroen van Dijk | March 12th, 2010 @ 01:36 PM
This patch contains changes in the documentation for the following change in the block helper behaviour:
<% form_for @something do |f| %>
...
<% end %>
Should now be
<%= form_for @something do |f| %>
<% end %>
I have walked through the actionview directory to find all occurences of block helpers in the documentation and I have updated it according to the new situation.
Comments and changes to this ticket
-
José Valim March 12th, 2010 @ 01:54 PM
- State changed from new to invalid
Please apply it on docrails. Thanks a lot!
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>
People watching this ticket
Attachments
Referenced by
- 4160 form_for blocks are skipped in ActionView due to changes in OutputBuffer I have prepared a patch to update the documentation for t...