Changeset 7007
- Timestamp:
- 06/12/07 16:47:18 (1 year ago)
- Files:
-
- branches/1-2-stable/railties/lib/dispatcher.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1-2-stable/railties/lib/dispatcher.rb
r7003 r7007 43 43 rescue Exception => exception # errors from CGI dispatch 44 44 failsafe_response(output, '500 Internal Server Error', exception) do 45 controller ||= ApplicationController rescue ActionController::Base45 controller ||= (ApplicationController rescue ActionController::Base) 46 46 controller.process_with_exception(request, response, exception).out(output) 47 47 end