bartTC / django-attachments

A generic Django application to attach Files (Attachments) to any model.
BSD 3-Clause "New" or "Revised" License
296 stars 90 forks source link

fixed 'next_' bug #55

Closed mattburlage closed 5 years ago

mattburlage commented 5 years ago

changed line 51 from next_ = request.POST.get('next_', '/')' tonext_ = request.POST.get('next', '/')`

ref issue 54

mattburlage commented 5 years ago

issue https://github.com/bartTC/django-attachments/issues/54#issue-410304689