From 8bcde6492ae77aec45e62205e6d133bf91c361dd Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 21 Nov 2008 12:08:11 +0000 Subject: [1.0.X] Fixed #2782 -- Make the server port available through the modpython handler. (Originally applied in r3866, reverted in r3927 and now verified as correct). Backport of r9512 from trunk. This is a bugfix, since the value is used in HttpRequest.get_host(). git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9513 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/handlers/modpython.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django') diff --git a/django/core/handlers/modpython.py b/django/core/handlers/modpython.py index c89f202c77..c6dcf23e9a 100644 --- a/django/core/handlers/modpython.py +++ b/django/core/handlers/modpython.py @@ -147,7 +147,7 @@ class ModPythonRequest(http.HttpRequest): 'REQUEST_METHOD': self._req.method, 'SCRIPT_NAME': self.django_root, 'SERVER_NAME': self._req.server.server_hostname, - 'SERVER_PORT': self._req.server.port, + 'SERVER_PORT': self._req.connection.local_addr[1], 'SERVER_PROTOCOL': self._req.protocol, 'SERVER_SOFTWARE': 'mod_python' } -- cgit v1.3