Author: brosner
Date: 2008-08-24 17:45:35 -0500 (Sun, 24 Aug 2008)
New Revision: 8523

Modified:
   django/trunk/django/contrib/admin/sites.py
Log:
Fixed #8520 -- Corrected a dumb typo in the call to password_change in 
django/contrib/admin/sites.py. Thanks Karen Tracey for catching this.

Modified: django/trunk/django/contrib/admin/sites.py
===================================================================
--- django/trunk/django/contrib/admin/sites.py  2008-08-24 20:16:56 UTC (rev 
8522)
+++ django/trunk/django/contrib/admin/sites.py  2008-08-24 22:45:35 UTC (rev 
8523)
@@ -198,7 +198,7 @@
         """
         from django.contrib.auth.views import password_change
         return password_change(request,
-            post_save_redirect='%spassword_change/done/' % self.root_path)
+            post_change_redirect='%spassword_change/done/' % self.root_path)
 
     def password_change_done(self, request):
         """


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to