diff --git a/CHANGELOG b/CHANGELOG index 9ccaee69..c48b6e94 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -53,3 +53,6 @@ set incorrectly. Thanks to Lukeman for the fix. 2010-07-16 r157 Fix issues #141, #142 - IMAP infinite loops and ticket pagination issues. Thanks to Walter Doekes for the patches. + +2010-07-16 r158 New CSRF functionality for Django 1.1+. Thanks to +'litchfield4' for the patch. diff --git a/templates/helpdesk/base.html b/templates/helpdesk/base.html index 5516236a..162880bf 100644 --- a/templates/helpdesk/base.html +++ b/templates/helpdesk/base.html @@ -21,7 +21,7 @@
- +{% csrf_token %} {% endblock %} diff --git a/templates/helpdesk/user_settings.html b/templates/helpdesk/user_settings.html index f737bd73..45cd659a 100644 --- a/templates/helpdesk/user_settings.html +++ b/templates/helpdesk/user_settings.html @@ -17,6 +17,6 @@ {% endfor %} - +{% csrf_token %} {% endblock %} diff --git a/templates/registration/login.html b/templates/registration/login.html index 8fae35e3..467181e9 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -16,5 +16,5 @@ - +{% csrf_token %} {% endblock %}