From: Kevin Israel Date: Tue, 14 Jun 2016 23:38:35 +0000 (-0400) Subject: update.php: Don't check for mbstring extension X-Git-Tag: 1.31.0-rc.0~6605^2 X-Git-Url: https://git.heureux-cyclage.org/?a=commitdiff_plain;h=751f1d0d457b61da2d69adc4b246a6646d995b63;p=lhc%2Fweb%2Fwiklou.git update.php: Don't check for mbstring extension This check is redundant to the one in PHPVersionCheck.php which was added in 41d1fa1c3a. Change-Id: I32ab259939ca7e93ad6d08f2c04406ad8a973b5d --- diff --git a/maintenance/update.php b/maintenance/update.php index 0103189944..b96e7eb871 100755 --- a/maintenance/update.php +++ b/maintenance/update.php @@ -82,13 +82,6 @@ class UpdateMediaWiki extends Maintenance { "ABORTING (see https://bugs.php.net/bug.php?id=45996).\n", true ); } - - if ( !function_exists( 'mb_strlen' ) ) { - $this->error( - "MediaWiki now requires the mbstring PHP extension, your system doesn't have it.\n" - . "ABORTING.\n", - true ); - } } function execute() {