Changeset 6802
- Timestamp:
- 05/21/07 23:01:17 (1 year ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/base.rb (modified) (1 diff)
- trunk/actionpack/test/controller/filter_params_test.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r6796 r6802 1 1 *SVN* 2 3 * Fix filtered parameter logging with nil parameter values. #8422 [choonkeat] 2 4 3 5 * Integration tests: alias xhr to xml_http_request and add a request_method argument instead of always using POST. #7124 [Nik Wakelin, Francois Beausoleil, Wizard] trunk/actionpack/lib/action_controller/base.rb
r6764 r6802 442 442 filtered_parameters[key] = filter_parameters(value) 443 443 elsif block_given? 444 key, value = key.dup, value.dup 444 key = key.dup 445 value = value.dup if value 445 446 yield key, value 446 447 filtered_parameters[key] = value trunk/actionpack/test/controller/filter_params_test.rb
r4200 r6802 17 17 18 18 test_hashes = [[{},{},[]], 19 [{'foo'=>nil},{'foo'=>nil},[]], 19 20 [{'foo'=>'bar'},{'foo'=>'bar'},[]], 20 21 [{'foo'=>'bar'},{'foo'=>'bar'},%w'food'],