1
0
mirror of https://github.com/django/django.git synced 2025-07-05 02:09:13 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/branches/new-admin@1294 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Robert Wittams 2005-11-19 23:21:57 +00:00
parent a44191565f
commit 58f4007b55

View File

@ -486,7 +486,7 @@ def change_stage(request, app_label, module_name, object_id):
if not request.user.has_perm(app_label + '.' + opts.get_change_permission()):
raise PermissionDenied
if request.POST and request.POST.has_key("_saveasnew"):
return add_stage_new(request, app_label, module_name, form_url='../add/')
return add_stage(request, app_label, module_name, form_url='../add/')
try:
manipulator = mod.ChangeManipulator(object_id)
except ObjectDoesNotExist: