[10.0.65.dev] Les installées sont exclues de la liste des langues "installables"

This commit is contained in:
fredtempez 2019-11-03 16:46:52 +01:00
parent 400b088f08
commit 9fdc645bb5
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class common {
const TEMP_DIR = 'site/tmp/';
// Numéro de version
const ZWII_VERSION = '10.0.64.dev';
const ZWII_VERSION = '10.0.65.dev';
public static $actions = [];
public static $coreModuleIds = [

View File

@ -19,7 +19,7 @@
<div class="col12">
<?php
$available = array ('' => 'Sélectionner');
$available = array_merge ($available, self::$i18nList);
$available = array_merge ($available, array_diff(self::$i18nList,$this->i18nInstalled()));
echo template::select('i18nLanguageAdd', $available, [
'label' => 'Sélectionner une langue à installer'
]); ?>