commit b29cb53646fafe2e5cf7a258bd80779c9656532a
Author: Samuel Cormier-Iijima <sam@chide.it>
Date: Wed Nov 9 20:02:50 2011 -0500
fix #17187: incompatibilities with Cherokee webserver's FastCGI handling
diff --git a/django/http/__init__.py b/django/http/__init__.py
index 68ac45d..6c1b8fa 100644
a
|
b
|
class HttpRequest(object):
|
248 | 248 | if content_length: |
249 | 249 | self._raw_post_data = self.read(content_length) |
250 | 250 | else: |
251 | | self._raw_post_data = self.read() |
| 251 | self._raw_post_data = '' |
252 | 252 | self._stream = StringIO(self._raw_post_data) |
253 | 253 | return self._raw_post_data |
254 | 254 | raw_post_data = property(_get_raw_post_data) |