Bug #6970
utils.make_url does not use utils.resolve_url correctly
Start date:
16 Apr 2015
Due date:
% Done:
100%
Estimated time:
Patch proposed:
No
Planning:
Description
resolve_url was backported from Django 1.7 but I fucked the signature, the proper fix is to remove our copy since we only support Django 1.7 now.
Associated revisions
History
Updated by Benjamin Dauvergne almost 6 years ago
- Status changed from Nouveau to Résolu (à déployer)
- % Done changed from 0 to 100
Appliqué par commit b3da3a6f9a6ca39fb140a0b81e1ae5764280fc09.
Updated by Benjamin Dauvergne about 5 years ago
- Status changed from Résolu (à déployer) to Solution déployée
utils: remove our copy of django.shortcuts.resolve_url (fixes #6970)
This function appeared with Django 1.7, we use the upstream version now.
It also fixes a bug in redirect() since our copy did not have an exact copy of
the upstream function signature.