From 9f096c755e008faa48b638b0d030079a061289d4 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Mon, 27 Feb 2023 17:57:58 +0100 Subject: [PATCH] Fix set zona in fase di aggiunta sede --- plugins/sedi/actions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sedi/actions.php b/plugins/sedi/actions.php index 70f2d3091..e9677eb15 100755 --- a/plugins/sedi/actions.php +++ b/plugins/sedi/actions.php @@ -38,7 +38,7 @@ switch ($operazione) { 'telefono' => post('telefono'), 'email' => post('email'), 'id_nazione' => !empty(post('id_nazione')) ? post('id_nazione') : null, - 'idzona' => !empty(post('id_zona')) ? post('id_zona') : 0, + 'idzona' => !empty(post('idzona')) ? post('idzona') : 0, 'enable_newsletter' => empty($opt_out_newsletter), ]); $id_record = $dbo->lastInsertedID();