Changeset 4582
- Timestamp:
- 07/08/06 00:18:42 (2 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/integration.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r4550 r4582 1 1 *SVN* 2 3 * Integration tests behave well with render_component. #4632 [edward.frederick@revolution.com, dev.rubyonrails@maxdunn.com] 2 4 3 5 * Added exception handling of missing layouts #5373 [chris@ozmm.org] trunk/actionpack/lib/action_controller/integration.rb
r4397 r4582 333 333 self.last_instantiation = nil 334 334 end 335 335 336 336 def new_with_capture(*args) 337 self.last_instantiation ||= new_without_capture(*args) 337 controller = new_without_capture(*args) 338 self.last_instantiation ||= controller 339 controller 338 340 end 339 341 end