From e5a0d6a183f529d6b34d8657a2c178898d5c2161 Mon Sep 17 00:00:00 2001 From: Ori Livneh Date: Thu, 30 Jun 2016 11:57:06 -0700 Subject: [PATCH] Drop check for mbstring in copyFileBackend maintenance script Already checked in PHPVersionCheck.php as of 41d1fa1c3a. Change-Id: I35e55b63378f1768076be0c45392fdc5d48168bf --- maintenance/copyFileBackend.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/maintenance/copyFileBackend.php b/maintenance/copyFileBackend.php index 7b92f89449..4f625fc69a 100644 --- a/maintenance/copyFileBackend.php +++ b/maintenance/copyFileBackend.php @@ -62,10 +62,6 @@ class CopyFileBackend extends Maintenance { $rateFile = $this->getOption( 'ratefile' ); - if ( $this->hasOption( 'utf8only' ) && !extension_loaded( 'mbstring' ) ) { - $this->error( "Cannot check for UTF-8, mbstring extension missing.", 1 ); // die - } - foreach ( $containers as $container ) { if ( $subDir != '' ) { $backendRel = "$container/$subDir"; -- 2.20.1