Changeset 7003
- Timestamp:
- 06/11/07 18:06:29 (1 year ago)
- Files:
-
- branches/1-2-stable/railties/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/railties/lib/dispatcher.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1-2-stable/railties/CHANGELOG
r6872 r7003 1 1 *SVN* 2 3 * Fix syntax error in dispatcher than wrecked failsafe responses. #8625 [mtitorenko] 2 4 3 5 * Add Active Resource to rails:freeze:edge and drop Action Web Service. #8205 [underbluewaters, Jeremy Kemper] branches/1-2-stable/railties/lib/dispatcher.rb
r5658 r7003 43 43 rescue Exception => exception # errors from CGI dispatch 44 44 failsafe_response(output, '500 Internal Server Error', exception) do 45 controller ||= ApplicationController rescue LoadError nil 46 controller ||= ActionController::Base 45 controller ||= ApplicationController rescue ActionController::Base 47 46 controller.process_with_exception(request, response, exception).out(output) 48 47 end