mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-11 15:14:01 +01:00
Fix minori
This commit is contained in:
parent
7fb94fde8f
commit
ee25709e46
@ -300,15 +300,24 @@ switch (filter('op')) {
|
||||
break;
|
||||
|
||||
case 'update_id_module_start':
|
||||
$group->id_module_start = filter('id_module_start');
|
||||
$group->save();
|
||||
try {
|
||||
$group->id_module_start = filter('id_module_start');
|
||||
$group->save();
|
||||
echo 'ok';
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
}
|
||||
|
||||
flash()->info(tr('Modulo aggiornato!'));
|
||||
break;
|
||||
case 'update_theme':
|
||||
$group->theme = filter('theme');
|
||||
$group->save();
|
||||
|
||||
flash()->info(tr('Tema aggiornato!'));
|
||||
case 'update_theme':
|
||||
try {
|
||||
$group->theme = filter('theme');
|
||||
$group->save();
|
||||
echo 'ok';
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
@ -307,7 +307,7 @@ function update_id_module_start(value){
|
||||
toastr["success"]("'.tr('Modulo iniziale aggiornato!').'");
|
||||
content_was_modified = false;
|
||||
} else {
|
||||
swal("'.tr('Errore').'", "'.tr("Errore durante l'aggiornamento delle impostazioni!").'", "error");
|
||||
swal("'.tr('Errore').'", data, "error");
|
||||
}
|
||||
}
|
||||
);
|
||||
@ -321,7 +321,7 @@ function update_theme(value){
|
||||
toastr["success"]("'.tr('Tema aggiornato!').'");
|
||||
content_was_modified = false;
|
||||
} else {
|
||||
swal("'.tr('Errore').'", "'.tr("Errore durante l'aggiornamento delle impostazioni!").'", "error");
|
||||
swal("'.tr('Errore').'", data, "error");
|
||||
}
|
||||
}
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user