Aggiunto messaggio aggiornamento utente

This commit is contained in:
Luca 2023-03-07 19:22:37 +01:00
parent 75bfac959c
commit 93f89294cf
1 changed files with 10 additions and 1 deletions

View File

@ -100,8 +100,17 @@ switch (filter('op')) {
foreach ($sedi as $id_sede) {
$dbo->query('INSERT INTO `zz_user_sedi` (`id_user`,`idsede`) VALUES ('.prepare($id_utente).', '.prepare($id_sede).')');
}
flash()->info(tr("Informazioni per l'utente _USERNAME_ salvate correttamente!", [
'_USERNAME_' => $utente->username,
]));
} else {
flash()->error(tr('Utente già esistente!'));
flash()->error(tr("Utente _USERNAME_ già esistente!", [
'_USERNAME_' => $username,
]));
}
break;