Changeset 5070
- Timestamp:
- 09/08/06 07:25:14 (2 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r5066 r5070 1 1 *SVN* 2 2 3 * Add descriptive messages to the exceptions thrown by cgi_methods. Closes #6091. [Nicholas Seckar]3 * Add descriptive messages to the exceptions thrown by cgi_methods. #6091, #6103 [Nicholas Seckar, Bob Silva] 4 4 5 5 * Update JavaScriptGenerator#show/hide/toggle/remove to new Prototype syntax for multiple ids, #6068 [petermichaux@gmail.com] trunk/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb
r5066 r5070 193 193 194 194 def type_conflict!(klass, value) 195 raise TypeError, "Conflicting types for parameter containers 196 Expected an instance of #{klass}, but found found one of #{value.class}" 195 raise TypeError, 196 "Conflicting types for parameter containers. " + 197 "Expected an instance of #{klass}, but found an instance of #{value.class}. " + 198 "This can be caused by passing Array and Hash based paramters qs[]=value&qs[key]=value. " 197 199 end 198 200