Fixed #14594 -- Corrected r14435, which got the logic completely bass ackwards. Thanks to Mark Sundstrom for keeping me honest :-)

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14436 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-11-02 08:30:01 +00:00
parent 32f650cfcc
commit 3e62e253d2
1 changed files with 2 additions and 2 deletions

View File

@ -148,9 +148,9 @@ class HttpRequest(object):
# specs, but see ticket #8259), so we handle TypeError as well.
content_length = 0
if content_length:
self._raw_post_data = self.read()
self._raw_post_data = self.read(content_length)
else:
self._raw_post_data = self.read(int(content_length))
self._raw_post_data = self.read()
self._stream = StringIO(self._raw_post_data)
return self._raw_post_data
raw_post_data = property(_get_raw_post_data)