Changes between Version 204 and Version 205 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Aug 4, 2008, 7:16:41 AM (16 years ago)
Author:
Piotr Lewandowski <django@…>
Comment:

typo fix

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v204 v205  
    10661066== Removed dictionary access to request object  ==
    10671067
    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 `reqest.REQUEST` for the same functionality:
     1068In [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:
    10691069 * `request[key]` -> `request.REQUEST[key]`
    10701070 * `key in request` -> `key in request.REQUEST`
Back to Top