Compare commits
2 Commits
6501672ac6
...
9333c2c119
Author | SHA1 | Date |
---|---|---|
Pek5892 | 9333c2c119 | |
Pek5892 | 894e3aea5a |
|
@ -230,7 +230,7 @@ switch (post('op')) {
|
|||
}
|
||||
|
||||
// Eliminazione file
|
||||
if (post('delete_immagine') !== null) {
|
||||
if (!empty(post('delete_immagine'))) {
|
||||
Uploads::delete($record['immagine'], [
|
||||
'id_module' => $id_module,
|
||||
'id_record' => $id_record,
|
||||
|
|
|
@ -329,7 +329,7 @@ if (database()->columnExists('mg_categorie_lang', 'name')) {
|
|||
|
||||
// Rimozione categoria 'Componenti' se non collegata ad articoli
|
||||
$categoria = Categoria::find((new Categoria())->getByField('title', 'Componenti'));
|
||||
$articoli_collegati = $categoria->articoli()->count();
|
||||
$articoli_collegati = $categoria ? $categoria->articoli()->count() : 0;
|
||||
if ($articoli_collegati === 0) {
|
||||
$database->query('DELETE FROM `mg_categorie` WHERE `id` = '.$categoria->id);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue