This commit is contained in:
Christophe 2022-04-05 23:04:43 +02:00
commit 4f138ad342

View file

@ -31,6 +31,9 @@ function gamuform_recup_saisies(string $objet):array {
if (empty($T)) { if (empty($T)) {
$T = []; $T = [];
} }
$T = array_filter($T, function($d){
return !empty($d['saisie']);
});
return $T; return $T;
} }