From fb3994bdfc296701ed156adbba9e898e17fa1c03 Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Wed, 5 Mar 2008 03:56:20 +0000 Subject: [PATCH] newforms-admin: Fixed #6100 -- Related field popup window now closes properly after saving. Thanks oggie_rob and Gary Wilson. git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7194 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/admin/options.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/django/contrib/admin/options.py b/django/contrib/admin/options.py index 6c33b6e15e..ab3291834d 100644 --- a/django/contrib/admin/options.py +++ b/django/contrib/admin/options.py @@ -383,9 +383,7 @@ class ModelAdmin(BaseModelAdmin): post_url_continue += "?_popup=1" return HttpResponseRedirect(post_url_continue % pk_value) if request.POST.has_key("_popup"): - if type(pk_value) is str: # Quote if string, so JavaScript doesn't think it's a variable. - pk_value = '"%s"' % pk_value.replace('"', '\\"') - return HttpResponse('' % \ + return HttpResponse('' % \ # escape() calls force_unicode. (escape(pk_value), escape(new_object))) elif request.POST.has_key("_addanother"):