mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fixed error handling of broken layouts #1115 [Michael Schubert]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1173 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
5feb7e26e8
commit
db16349bc1
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Fixed error handling of broken layouts #1115 [Michael Schubert]
|
||||
|
||||
* Changed render_partial to take local assigns as the second parameter instead of an explicit object and then the assigns. So the API changes from:
|
||||
|
||||
<%= render_partial "account", person, "rules" => regulations.rules %>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<h1>
|
||||
<%=h @exception.original_exception.class.to_s %> in
|
||||
<%=h @request.parameters["controller"].capitalize %>#<%=h @request.parameters["action"] %>
|
||||
<%=h @request.parameters["controller"].capitalize if @request.parameters["controller"]%>#<%=h @request.parameters["action"] %>
|
||||
</h1>
|
||||
|
||||
<p>
|
||||
|
|
Loading…
Reference in a new issue