Guest User

Untitled

a guest
May 1st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <!-- Corrent -->
  2. <% render :layout => 'some_partial_layout' do %>
  3. I work just fine!
  4. <% end %>
  5.  
  6. <!-- Very Bad -->
  7. <% render :partial => 'some_partial_layout' do %>
  8. I cause an infinite loop!
  9. <% end %>
  10.  
  11. <!-- Tested in Rails 2.2.3. Might work in others... -->
Add Comment
Please, Sign In to add comment