#4604: Message Passing For Anonymous Users
-------------------------------------------------------+--------------------
Reporter: Sean Patrick Hogan <[EMAIL PROTECTED]> | Owner:
nobody
Status: new | Component:
Contrib apps
Version: SVN | Resolution:
Keywords: | Stage:
Design decision needed
Has_patch: 1 | Needs_docs:
0
Needs_tests: 0 | Needs_better_patch:
1
-------------------------------------------------------+--------------------
Changes (by Thomas Güttler <[EMAIL PROTECTED]>):
* needs_better_patch: 0 => 1
Comment:
There is a bug in visitor_messages_r6373.patch
old:
{{{
def get_and_delete_messages(self):
return self.pop(self.MESSAGES_NAME, [])
}}}
new:
{{{
def get_and_delete_messages(self):
msgs = self.pop(self.MESSAGES_NAME, [])
if msgs:
self.modified = True
return msgs
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/4604#comment:17>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---