Merge pull request #1258 from batisteo/ticket-20585
Fixed #20585: normalize signature of DeletionMixin.post.
This commit is contained in:
commit
51739c6241
|
@ -242,8 +242,8 @@ class DeletionMixin(object):
|
||||||
return HttpResponseRedirect(success_url)
|
return HttpResponseRedirect(success_url)
|
||||||
|
|
||||||
# Add support for browsers which only accept GET and POST for now.
|
# Add support for browsers which only accept GET and POST for now.
|
||||||
def post(self, *args, **kwargs):
|
def post(self, request, *args, **kwargs):
|
||||||
return self.delete(*args, **kwargs)
|
return self.delete(request, *args, **kwargs)
|
||||||
|
|
||||||
def get_success_url(self):
|
def get_success_url(self):
|
||||||
if self.success_url:
|
if self.success_url:
|
||||||
|
|
Loading…
Reference in New Issue