Changeset 3137
- Timestamp:
- 11/21/05 08:04:28 (3 years ago)
- Files:
-
- branches/stable/actionpack/CHANGELOG (modified) (1 diff)
- branches/stable/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb (modified) (1 diff)
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/stable/actionpack/CHANGELOG
r3112 r3137 1 1 *SVN* 2 3 * Strip out trailing &_= for raw post bodies. Closes #2868. [Sam Stephenson] 2 4 3 5 * Correct docs for automatic layout assignment. #2610. [Charles M. Gerungan] branches/stable/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb
r2109 r3137 55 55 # fix for Safari Ajax postings that always append \000 56 56 content.chop! if content[-1] == 0 57 content.gsub! /&_=$/, '' 57 58 env_table['RAW_POST_DATA'] = content.freeze 58 59 end trunk/actionpack/CHANGELOG
r3116 r3137 1 1 *SVN* 2 3 * Strip out trailing &_= for raw post bodies. Closes #2868. [Sam Stephenson] 2 4 3 5 * Pass multiple arguments to Element.show and Element.hide in JavaScriptGenerator instead of using iterators. [Sam Stephenson] trunk/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb
r2109 r3137 55 55 # fix for Safari Ajax postings that always append \000 56 56 content.chop! if content[-1] == 0 57 content.gsub! /&_=$/, '' 57 58 env_table['RAW_POST_DATA'] = content.freeze 58 59 end