Changeset 5241
- Timestamp:
- 10/09/06 00:21:47 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r5232 r5241 1 1 *SVN* 2 3 * Fixed that some 500 rescues would cause 500's themselves because the response had not yet been generated #6329 [cmselmer] 2 4 3 5 * respond_to :html doesn't assume .rhtml. #6281 [Hampton Catlin] trunk/actionpack/lib/action_controller/templates/rescues/_request_and_response.rhtml
r5239 r5241 42 42 43 43 <h2 style="margin-top: 30px">Response</h2> 44 <b>Headers</b>: <%=h response .headers.inspect.gsub(/,/, ",\n")%><br/>44 <b>Headers</b>: <%=h response ? response.headers.inspect.gsub(/,/, ",\n") : "None" %><br/>