From 2f7b5cfcfbe5a226588ac4616d18d99d28e1db74 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Sat, 26 Aug 2023 13:51:18 +0700 Subject: [PATCH] Update config.php --- library/config.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/library/config.php b/library/config.php index 8b47af79..c9a503a4 100644 --- a/library/config.php +++ b/library/config.php @@ -361,9 +361,11 @@ if (get_magic_quotes_gpc()) die('Set magic_quotes off'); // JSON if (!function_exists('json_encode')) die('Json_encode not installed'); // Mbstring -if (!extension_loaded('mbstring')) die('Mbstring not installed'); +if (!extension_loaded('mbstring')) die('Mbstring extension not installed'); // BCMath -if (!extension_loaded('bcmath')) die('BCMath not installed'); +if (!extension_loaded('bcmath')) die('BCMath extension not installed'); +// Intl +if (!extension_loaded('intl')) die('Intl extension not installed'); // Triggers define('BB_ENABLED', TRIGGERS_DIR .'$on');