Commit 7baee7a0 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

[1.3.X] Fixed #17316 -- Mentionned that the MultipleProxyMiddleware provided...

[1.3.X] Fixed #17316 -- Mentionned that the MultipleProxyMiddleware provided as an example must run rather early. Backport of r17556 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17557 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 2a5a0b80
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -223,6 +223,10 @@ Methods
                                parts = request.META[field].split(',')
                                request.META[field] = parts[-1].strip()

        This middleware should be positionned before any other middleware that
        relies on the value of :meth:`~HttpRequest.get_host()`, for instance
        :class:`~django.middleware.common.CommonMiddleware` or
        :class:`~django.middleware.csrf.CsrfViewMiddleware`.

.. method:: HttpRequest.get_full_path()