Ticket #7635: increase_limit.diff
File increase_limit.diff, 641 bytes (added by , 16 years ago) |
---|
-
django/http/multipartparser.py
359 359 self._largest_position = value 360 360 else: 361 361 self._modifications_since += 1 362 if self._modifications_since > 500:362 if self._modifications_since > 64000: 363 363 raise SuspiciousOperation( 364 364 "The multipart parser got stuck, which shouldn't happen with" 365 365 " normal uploaded files. Check for malicious upload activity;"