Changeset 529
- Timestamp:
- 02/07/05 19:12:11 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_controller/session/active_record_store.rb
r517 r529 57 57 def update 58 58 return unless @session 59 @session.update_attribute "data", @data59 ActiveRecord::Base.benchmark("Saving session") { @session.update_attribute "data", @data } 60 60 end 61 61 end #ActiveRecordStore