Changes between Version 6 and Version 7 of DeveloperGuidelines/FAQ
- Timestamp:
- 08/11/11 07:23:14 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/FAQ
v6 v7 31 31 32 32 Protect sections within these functions to be only accessed via interactive calls using: 33 if "_formkey" in request.post_vars: 34 35 33 {{{ 34 if isinstance(form, FORM): 35 # Interactive request 36 }}} 36 37 DeveloperGuidelines