Fix eliminazione utenti

This commit is contained in:
valentina 2024-09-03 17:16:58 +02:00
parent fa289c8c29
commit 2d8e65a46c
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ switch (filter('op')) {
/* Controlla che non posso auto eliminarmi */
if (Auth::user()->id != $utente->id) {
/* Controlla che l'utente che voglio eliminare non presenti logs associati */
if (count($utente->logs) > 0) {
if (count($utente->logs) == 0) {
if ($dbo->query('DELETE FROM zz_users WHERE id='.prepare($id_utente))) {
flash()->info(tr('Utente eliminato!'));