Changeset 251
- Timestamp:
- 12/22/04 13:53:47 (4 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r250 r251 1 1 *SVN* 2 3 * Added search through session to clear out association caches at the end of each request. This makes it possible to place Active Record objects 4 in the session without worrying about stale data in the associations (the main object is still subject to caching, naturally) #347 [Tobias Luetke] 2 5 3 6 * Added more informative exception when using helper :some_helper and the helper requires another file that fails, you'll get an trunk/actionpack/lib/action_controller.rb
r51 r251 33 33 require 'action_controller/layout' 34 34 require 'action_controller/flash' 35 require 'action_controller/session' 35 36 require 'action_controller/dependencies' 36 37 require 'action_controller/scaffolding' … … 49 50 include ActionController::Helpers 50 51 include ActionController::Cookies 52 include ActionController::Session 51 53 end 52 54