Index: trunk/phase3/includes/upload/UploadFromUrl.php |
— | — | @@ -45,6 +45,9 @@ |
46 | 46 | |
47 | 47 | $this->mUrl = $url; |
48 | 48 | $this->mAsync = $wgAllowAsyncCopyUploads ? $async : false; |
| 49 | + if ( $async ) { |
| 50 | + throw new MWException( 'Asynchronous copy uploads are no longer possible as of r81612.' ); |
| 51 | + } |
49 | 52 | |
50 | 53 | $tempPath = $this->mAsync ? null : $this->makeTemporaryFile(); |
51 | 54 | # File size and removeTempFile will be filled in later |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -434,7 +434,7 @@ |
435 | 435 | $wgAllowCopyUploads = false; |
436 | 436 | /** |
437 | 437 | * Allow asynchronous copy uploads. |
438 | | - * This feature is experimental. |
| 438 | + * This feature is experimental is broken as of r81612. |
439 | 439 | */ |
440 | 440 | $wgAllowAsyncCopyUploads = false; |
441 | 441 | |