Commit 779b03b8c30af4f7acb2c7eb09bb335d5a3c2f42
1 parent
272330c7
Exists in
master
and in
1 other branch
Bugfix pour php5 dans src/Shell/DbShell.php
v5.5.3-3.10.1
Showing
3 changed files
with
8 additions
and
3 deletions
Show diff stats
CHANGELOG
... | ... | @@ -484,7 +484,9 @@ rien ? |
484 | 484 | ======= CHANGES ======= |
485 | 485 | |
486 | 486 | ------- |
487 | -06/12/2021 v5.5.2-3.10.1 | |
487 | +06/12/2021 v5.5.3-3.10.1 | |
488 | + - (i) Bugfix pour php5 dans src/Shell/DbShell.php | |
489 | + - (i) update gitignore (ignorer config IRAP) | |
488 | 490 | - (i) Mise à jour du script de mise à jour... (install/update.sh) |
489 | 491 | pour qu'il crée un fichier de config des champs obligatoires (config/app_labinvent_mandatory_fields.yml) |
490 | 492 | s'il n'existe pas encore (à partir de la config par défaut config/app_labinvent_mandatory_fields.default.yml) | ... | ... |
README.md
... | ... | @@ -53,7 +53,7 @@ Logiciel testé et validé sur les configurations suivantes : |
53 | 53 | -------------------------------------------------------------------------------------------- |
54 | 54 | |
55 | 55 | Date: 06/12/2021 |
56 | -Version: v5.5.2-3.10.1 | |
56 | +Version: v5.5.3-3.10.1 | |
57 | 57 | |
58 | 58 | |
59 | 59 | HISTORIQUE DES CHANGEMENTS DE VERSION : voir le fichier CHANGES.txt (ou la page web /pages/changes) | ... | ... |
src/Shell/DbShell.php
... | ... | @@ -11,7 +11,10 @@ define("NL", "\n\n"); |
11 | 11 | class DbShell extends Shell |
12 | 12 | { |
13 | 13 | |
14 | - public function initialize():void | |
14 | + // PHP7 only !!! | |
15 | + //public function initialize():void | |
16 | + // PHP5 ok... | |
17 | + public function initialize() | |
15 | 18 | { |
16 | 19 | parent::initialize(); |
17 | 20 | $this->loadModel('Utilisateurs'); | ... | ... |