Commit 3e62e253 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #14594 -- Corrected r14435, which got the logic completely bass...

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
parent 32f650cf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)