From 3606f1f7b2eb422a49944824b1d8dbc227dc879f Mon Sep 17 00:00:00 2001 From: Simon Meers Date: Wed, 21 Sep 2011 22:45:25 +0000 Subject: [PATCH] [1.3.X] Fixed #16904 -- Additional clarification regarding contrib.messages iteration. Thanks murphyke for the report and patch. Backport of [16866] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16867 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/messages.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/ref/contrib/messages.txt b/docs/ref/contrib/messages.txt index ca3212df1f..ee7e01c61f 100644 --- a/docs/ref/contrib/messages.txt +++ b/docs/ref/contrib/messages.txt @@ -210,6 +210,10 @@ If you're using the context processor, your template should be rendered with a ``RequestContext``. Otherwise, ensure ``messages`` is available to the template context. +Even if you know there is only just one message, you should still iterate over +the ``messages`` sequence, because otherwise the message storage will not be cleared +for the next request. + Creating custom message levels ------------------------------