From 751f1d0d457b61da2d69adc4b246a6646d995b63 Mon Sep 17 00:00:00 2001 From: Kevin Israel Date: Tue, 14 Jun 2016 19:38:35 -0400 Subject: [PATCH] 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 --- maintenance/update.php | 7 ------- 1 file changed, 7 deletions(-) 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() { -- 2.20.1