Changeset 4445
- Timestamp:
- 06/08/06 16:18:10 (2 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/templates/rescues/routing_error.rhtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r4444 r4445 1 1 *SVN* 2 3 * Remove problematic control chars in rescue template. #5316 [Stefan Kaes] 2 4 3 5 * Make sure passed routing options are not mutated by routing code. #5314 [Blair Zajac] trunk/actionpack/lib/action_controller/templates/rescues/routing_error.rhtml
r1048 r4445 2 2 <p><pre><%=h @exception.message %></pre></p> 3 3 <% unless @exception.failures.empty? %><p> 4 <h2>Failure reasons:</h2>5 <ol>6 <% @exception.failures.each do |route, reason| %>7 <li><code><%=h route.inspect.gsub('\\', '') %></code> failed because <%=h reason.downcase %></li>4 <h2>Failure reasons:</h2> 5 <ol> 6 <% @exception.failures.each do |route, reason| %> 7 <li><code><%=h route.inspect.gsub('\\', '') %></code> failed because <%=h reason.downcase %></li> 8 8 <% end %> 9 9 </ol>