From 9e5d87e821b5fcc0e4cc6f756262c2567d44d929 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 3 Apr 2019 18:39:27 +0200 Subject: [PATCH] Fix warning --- htdocs/core/lib/functions.lib.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index 53004614f68..8c3393dd08e 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -7039,6 +7039,10 @@ function getLanguageCodeFromCountryCode($countrycode) } } } + else + { + dol_syslog("Warning Exention php-intl is not available", LOG_WARNING); + } return null; }