diff --git a/CHANGELOG b/CHANGELOG index fe6ea8f..e80f1fe 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -484,7 +484,9 @@ rien ? ======= CHANGES ======= ------- -06/12/2021 v5.5.2-3.10.1 +06/12/2021 v5.5.3-3.10.1 + - (i) Bugfix pour php5 dans src/Shell/DbShell.php + - (i) update gitignore (ignorer config IRAP) - (i) Mise à jour du script de mise à jour... (install/update.sh) pour qu'il crée un fichier de config des champs obligatoires (config/app_labinvent_mandatory_fields.yml) s'il n'existe pas encore (à partir de la config par défaut config/app_labinvent_mandatory_fields.default.yml) diff --git a/README.md b/README.md index c69ee61..1dee1cb 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Logiciel testé et validé sur les configurations suivantes : -------------------------------------------------------------------------------------------- Date: 06/12/2021 -Version: v5.5.2-3.10.1 +Version: v5.5.3-3.10.1 HISTORIQUE DES CHANGEMENTS DE VERSION : voir le fichier CHANGES.txt (ou la page web /pages/changes) diff --git a/src/Shell/DbShell.php b/src/Shell/DbShell.php index def104c..589a887 100644 --- a/src/Shell/DbShell.php +++ b/src/Shell/DbShell.php @@ -11,7 +11,10 @@ define("NL", "\n\n"); class DbShell extends Shell { - public function initialize():void + // PHP7 only !!! + //public function initialize():void + // PHP5 ok... + public function initialize() { parent::initialize(); $this->loadModel('Utilisateurs'); -- libgit2 0.21.2