Correzione su ID a null su tabelle generali

This commit is contained in:
Dasc3er 2020-09-24 09:35:36 +02:00
parent 6c6b73b4c2
commit 70824e0836
1 changed files with 4 additions and 2 deletions

View File

@ -93,10 +93,12 @@ if (!empty($query)) {
// Creazione della tabella
foreach ($rows as $i => $r) {
// Evitare risultati con id a null
// Evitare risultati con ID a null
// Codice non applicabile in ogni caso: sulla base dei permessi, ID può non essere impostato
/*
if (empty($r['id'])) {
continue;
}
}*/
$result = [
'id' => $r['id'],