diff --git a/config/application.config.php b/config/application.config.php index e35e04f11035323ef570eae21707f7d96435f9ad..ebde397a4f3f7e31adae27924c4ed2a632a62a53 100755 --- a/config/application.config.php +++ b/config/application.config.php @@ -10,6 +10,7 @@ $modules = [ 'Octopus', 'Utilisateur', 'Application', + //'ZendDeveloperTools', ]; if ( 'development' == getenv('APPLICATION_ENV') ?: 'production' ) { diff --git a/config/autoload/unicaen-app.global.php b/config/autoload/unicaen-app.global.php index e30901d7d113295aaa132d6b7c3b194325907d88..a59e01ed700082355b50b25fbbc8c9a4b6588e93 100644 --- a/config/autoload/unicaen-app.global.php +++ b/config/autoload/unicaen-app.global.php @@ -14,8 +14,8 @@ return [ 'app_infos' => [ 'nom' => "PrEECoG", 'desc' => "Gestion Prévisionnelle des effectifs, des emplois et des compétences", - 'version' => "0.1.2", - 'date' => "07/05/2019", + 'version' => "0.2.0", + 'date' => "03/07/2019", 'contact' => ['mail' => "dsi.applications@unicaen.fr", /*'tel' => "01 02 03 04 05"*/], 'mentionsLegales' => "http://www.unicaen.fr/acces-direct/mentions-legales/", 'informatiqueEtLibertes' => "http://www.unicaen.fr/acces-direct/informatique-et-libertes/", diff --git a/module/Autoform/view/autoform/formulaire/afficher-resultat.phtml b/module/Autoform/view/autoform/formulaire/afficher-resultat.phtml index 023f0466fe584e59753dda5b6b280812c52e43e8..3d3b11f2118192ea38265e8e5ffe341bfdd807e1 100644 --- a/module/Autoform/view/autoform/formulaire/afficher-resultat.phtml +++ b/module/Autoform/view/autoform/formulaire/afficher-resultat.phtml @@ -24,7 +24,7 @@ $results = []; foreach ($champs as $champ) { - if ($reponses[$champ->getId()]) $results[] = $reponses[$champ->getId()]; + if ($champ->getId() && isset($reponses[$champ->getId()])) $results[] = $reponses[$champ->getId()]; } ?>