Changes between Version 6 and Version 7 of DeveloperGuidelines/FAQ


Ignore:
Timestamp:
08/11/11 07:23:14 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/FAQ

    v6 v7  
    3131
    3232Protect sections within these functions to be only accessed via interactive calls using:
    33 if "_formkey" in request.post_vars:
    34 
    35 
     33{{{
     34if isinstance(form, FORM):
     35    # Interactive request
     36}}}
    3637DeveloperGuidelines