diff --git a/core/core.php b/core/core.php index 1a5dc92f..42cbf3ec 100644 --- a/core/core.php +++ b/core/core.php @@ -303,7 +303,9 @@ class common { // La langue d'installation par défaut est fr foreach ($this->dataFiles as $stageId => $item) { $folder = $this->dataPath ($stageId, self::$i18n); - if (file_exists($folder . $stageId .'.json') === false) { + if ( file_exists($folder . $stageId .'.json') === false || + $this->getData([$stageId]) === NULL + ) { $this->initData($stageId, self::$i18n); common::$coreNotices [] = $stageId ; }