Skip to content

Commit

Permalink
fix: salvataggio anagrafica
Browse files Browse the repository at this point in the history
  • Loading branch information
Pek5892 committed Nov 27, 2024
1 parent 9d8f0f0 commit 828aae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/anagrafiche/actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
$anagrafica->nome = post('nome');
$anagrafica->cognome = post('cognome');
$anagrafica->tipo = post('tipo');
$anagrafica->data_nascita = post('data_nascita');
$anagrafica->data_nascita = post('data_nascita') ?: NULL;
$anagrafica->luogo_nascita = post('luogo_nascita');
$anagrafica->sesso = post('sesso');
$anagrafica->capitale_sociale = post('capitale_sociale');
Expand Down

0 comments on commit 828aae6

Please sign in to comment.