From 62bb4d911dfc69df21af493d9ffe0a69e20e1ce5 Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Fri, 17 Apr 2020 10:17:06 +0100
Subject: [PATCH] Issue #3127255 by kiamlaluno, longwave, johndevman:
 system_requirements() checks for values that Unicode::check() doesn't return
 anymore

---
 core/modules/system/system.install | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index ee35c1c79af8..89335d0136ff 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -1060,14 +1060,6 @@ function system_requirements($phase) {
     case 'mbstring.encoding_translation':
       $requirements['unicode']['description'] = t('Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini <em>mbstring.encoding_translation</em> setting. Please refer to the <a href="http://php.net/mbstring">PHP mbstring documentation</a> for more information.');
       break;
-
-    case 'mbstring.http_input':
-      $requirements['unicode']['description'] = t('Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini <em>mbstring.http_input</em> setting. Please refer to the <a href="http://php.net/mbstring">PHP mbstring documentation</a> for more information.');
-      break;
-
-    case 'mbstring.http_output':
-      $requirements['unicode']['description'] = t('Multibyte string output conversion in PHP is active and must be disabled. Check the php.ini <em>mbstring.http_output</em> setting. Please refer to the <a href="http://php.net/mbstring">PHP mbstring documentation</a> for more information.');
-      break;
   }
 
   if ($phase == 'runtime') {
-- 
GitLab