Changeset 7002
- Timestamp:
- 06/11/07 18:05:02 (1 year ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/dispatcher.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r6994 r7002 1 1 *SVN* 2 3 * Fix syntax error in dispatcher than wrecked failsafe responses. #8625 [mtitorenko] 2 4 3 5 * Scaffolded validation errors set the appropriate HTTP status for XML responses. #6946, #8622 [Manfred Stienstra, mmmultiworks] trunk/railties/lib/dispatcher.rb
r6611 r7002 41 41 rescue Exception => exception # errors from CGI dispatch 42 42 failsafe_response(cgi, output, '500 Internal Server Error', exception) do 43 controller ||= ApplicationController rescue LoadError nil 44 controller ||= ActionController::Base 43 controller ||= ApplicationController rescue ActionController::Base 45 44 controller.process_with_exception(request, response, exception).out(output) 46 45 end