From: Neil Kandalgaonkar Date: Fri, 25 Mar 2011 06:37:26 +0000 (+0000) Subject: fix bug #28071. Many video previews are relatively large, esp. since MediaWiki only... X-Git-Tag: 1.31.0-rc.0~31199 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=043ae82a47272570986518d9b17bd3468454199e;p=lhc%2Fweb%2Fwiklou.git fix bug #28071. Many video previews are relatively large, esp. since MediaWiki only pulls out single frames for previews without scaling sometimes. --- diff --git a/includes/specials/SpecialUploadStash.php b/includes/specials/SpecialUploadStash.php index 78f4bb8b16..9f14c5feab 100644 --- a/includes/specials/SpecialUploadStash.php +++ b/includes/specials/SpecialUploadStash.php @@ -28,7 +28,7 @@ class SpecialUploadStash extends UnlistedSpecialPage { // // This service is really for thumbnails and other such previews while // uploading. - const MAX_SERVE_BYTES = 262144; // 256K + const MAX_SERVE_BYTES = 1048576; // 1MB public function __construct() { parent::__construct( 'UploadStash', 'upload' );