Changes between Version 204 and Version 205 of BackwardsIncompatibleChanges
- Timestamp:
- Aug 4, 2008, 7:16:41 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackwardsIncompatibleChanges
v204 v205 1066 1066 == Removed dictionary access to request object == 1067 1067 1068 In [8202], removed dictionary access to request object to avoid its attributes from being overridden in templates by GET and POST data. Instead, you should use `req est.REQUEST` for the same functionality:1068 In [8202], removed dictionary access to request object to avoid its attributes from being overridden in templates by GET and POST data. Instead, you should use `request.REQUEST` for the same functionality: 1069 1069 * `request[key]` -> `request.REQUEST[key]` 1070 1070 * `key in request` -> `key in request.REQUEST`