Changeset 453
- Timestamp:
- 01/17/05 23:38:14 (4 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/cookies.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r452 r453 1 1 *SVN* 2 3 * Fixed a bug where cookies wouldn't be set if a symbol was used instead of a string as the key 2 4 3 5 * Added assert_cookie_equal to assert the contents of a named cookie trunk/actionpack/lib/action_controller/cookies.rb
r343 r453 49 49 options["name"] = name.to_s 50 50 else 51 options = { "name" => name , "value" => options }51 options = { "name" => name.to_s, "value" => options } 52 52 end 53 53