From dd8c2ef46417a7d8500a3e1f1a59e68dcae913b8 Mon Sep 17 00:00:00 2001 From: Pek5892 Date: Mon, 25 Mar 2024 16:13:43 +0100 Subject: [PATCH] Fix minore --- modules/ddt/actions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ddt/actions.php b/modules/ddt/actions.php index 80615026b..f038e0e02 100755 --- a/modules/ddt/actions.php +++ b/modules/ddt/actions.php @@ -82,7 +82,7 @@ switch (filter('op')) { } // Leggo la descrizione del pagamento - $pagamento = Pagamento::find($idpagamento)->getTranslation('name'); + $pagamento = ($idpagamento ? Pagamento::find($idpagamento)->getTranslation('name') : null); $ddt->data = post('data'); $ddt->numero_esterno = $numero_esterno;