From bbe17401a0757fc39abdbbc1fba4bf2e1c4828aa Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Sun, 24 Sep 2023 12:26:38 +0700 Subject: [PATCH] Added missing mbstring extension --- README.md | 2 +- library/defines.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 65b8c82a2..53c000bd3 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ and go from there. The documentation will be translated into english in the near * Apache / nginx * MySQL 5.5.3 or above / MariaDB 10.0 or above / Percona * PHP: 7.4 / 8.0 / 8.1 / 8.2 -* PHP Extensions: bcmath, intl, tidy (optional), xml, xmlwriter +* PHP Extensions: mbstring, bcmath, intl, tidy (optional), xml, xmlwriter ## 💾 Installation diff --git a/library/defines.php b/library/defines.php index 4e3f85d1a..b59e3a245 100644 --- a/library/defines.php +++ b/library/defines.php @@ -25,6 +25,7 @@ define('CHECK_REQIREMENTS', [ 'tidy', 'mysqli', 'bcmath', + 'mbstring', 'intl', 'xml', 'xmlwriter',