Changes between Initial Version and Version 2 of Ticket #7379


Ignore:
Timestamp:
Jun 16, 2008, 10:27:28 AM (16 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7379 – Description

    initial v2  
    11line 83 of django/middleware/common.py should be:
    22
     3{{{
    34    newurl += '?' + request.META['QUERY_STRING']
     5}}}
    46
    57instead of:
    68
     9{{{
    710    newurl += '?' + request.GET.urlencode()
     11}}}
    812
    913That will ensure that the query parameters included in the redirect url are
Back to Top