fix bug #28071. Many video previews are relatively large, esp. since MediaWiki only...
authorNeil Kandalgaonkar <neilk@users.mediawiki.org>
Fri, 25 Mar 2011 06:37:26 +0000 (06:37 +0000)
committerNeil Kandalgaonkar <neilk@users.mediawiki.org>
Fri, 25 Mar 2011 06:37:26 +0000 (06:37 +0000)
includes/specials/SpecialUploadStash.php

index 78f4bb8..9f14c5f 100644 (file)
@@ -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' );