Ticket #16705: 13746_query_string.patch
File 13746_query_string.patch, 459 bytes (added by , 13 years ago) |
---|
-
django/views/generic/simple.py
48 48 from the request is appended to the URL. 49 49 50 50 """ 51 args = request.META ["QUERY_STRING"]51 args = request.META.get("QUERY_STRING") 52 52 if args and query_string and url is not None: 53 53 url = "%s?%s" % (url, args) 54 54