1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-03-12 01:00:13 +01:00
This commit is contained in:
FabioL 2024-09-17 14:17:56 +02:00
commit 004a0bdd42
2 changed files with 2 additions and 2 deletions

View File

@ -198,7 +198,7 @@ switch (filter('op')) {
$id = filter('id');
$widget = $database->table('zz_widgets_lang')
->where('id', '=', $id)
->where('id_record', '=', $id)
->first();
// Abilitazione del widget indicato

View File

@ -128,7 +128,7 @@ class Validate
$fields['ragione_sociale'] = $data->company_name;
// Indirizzo
$address = $data->company_address;
$address = $data->company_address ?: '';
$info = explode(PHP_EOL, $address);
$fields['indirizzo'] = $info[0];