diff --git a/actions.php b/actions.php index 69df6d94d..d48555100 100644 --- a/actions.php +++ b/actions.php @@ -34,14 +34,14 @@ $dbo->query('START TRANSACTION'); if (filter('op') == 'link_file' || filter('op') == 'unlink_file') { // Controllo sui permessi di scrittura per il modulo if (Modules::getPermission($id_module) != 'rw') { - App::flash()->error(tr('Non hai permessi di scrittura per il modulo _MODULE_', [ + flash()->error(tr('Non hai permessi di scrittura per il modulo _MODULE_', [ '_MODULE_' => '"'.Modules::get($id_module)['name'].'"', ])); } // Controllo sui permessi di scrittura per il file system elseif (!directory($upload_dir)) { - App::flash()->error(tr('Non hai i permessi di scrittura nella cartella _DIR_!', [ + flash()->error(tr('Non hai i permessi di scrittura nella cartella _DIR_!', [ '_DIR_' => '"files"', ])); } @@ -60,9 +60,9 @@ if (filter('op') == 'link_file' || filter('op') == 'unlink_file') { // Creazione file fisico if (!empty($upload)) { - App::flash()->info(tr('File caricato correttamente!')); + flash()->info(tr('File caricato correttamente!')); } else { - App::flash()->error(tr('Errore durante il caricamento del file!')); + flash()->error(tr('Errore durante il caricamento del file!')); } } @@ -75,11 +75,11 @@ if (filter('op') == 'link_file' || filter('op') == 'unlink_file') { ]); if (!empty($name)) { - App::flash()->info(tr('File _FILE_ eliminato!', [ + flash()->info(tr('File _FILE_ eliminato!', [ '_FILE_' => '"'.$name.'"', ])); } else { - App::flash()->error(tr("Errore durante l'eliminazione del file!")); + flash()->error(tr("Errore durante l'eliminazione del file!")); } } @@ -132,9 +132,9 @@ if (filter('op') == 'link_file' || filter('op') == 'unlink_file') { // Invio mail if (!$mail->send()) { - App::flash()->error(tr("Errore durante l'invio dell'email").': '.$mail->ErrorInfo); + flash()->error(tr("Errore durante l'invio dell'email").': '.$mail->ErrorInfo); } else { - App::flash()->info(tr('Email inviata correttamente!')); + flash()->info(tr('Email inviata correttamente!')); } } diff --git a/bug.php b/bug.php index b1ebc57d1..c5c344c30 100644 --- a/bug.php +++ b/bug.php @@ -29,7 +29,7 @@ if (filter('op') == 'send') { $mail->AddAttachment($backup_file); - App::flash()->info(tr('Backup del database eseguito ed allegato correttamente!')); + flash()->info(tr('Backup del database eseguito ed allegato correttamente!')); } // Aggiunta delle informazioni di base sull'installazione @@ -57,9 +57,9 @@ if (filter('op') == 'send') { // Invio mail if (!$mail->send()) { - App::flash()->error(tr("Errore durante l'invio della segnalazione").': '.$mail->ErrorInfo); + flash()->error(tr("Errore durante l'invio della segnalazione").': '.$mail->ErrorInfo); } else { - App::flash()->info(tr('Email inviata correttamente!')); + flash()->info(tr('Email inviata correttamente!')); } // Rimozione del dump del database diff --git a/include/top.php b/include/top.php index 3d8b875e4..c6fe0b616 100644 --- a/include/top.php +++ b/include/top.php @@ -5,7 +5,7 @@ include_once __DIR__.'/../core.php'; $paths = App::getPaths(); $user = Auth::user(); -$messages = App::flash()->getMessages(); +$messages = flash()->getMessages(); echo ' diff --git a/index.php b/index.php index 201321d52..0ff078b69 100644 --- a/index.php +++ b/index.php @@ -22,17 +22,17 @@ switch ($op) { $result = Backup::daily(); if (!isset($result)) { - App::flash()->info(tr('Backup saltato perché già esistente!')); + flash()->info(tr('Backup saltato perché già esistente!')); } elseif (!empty($result)) { - App::flash()->info(tr('Backup automatico eseguito correttamente!')); + flash()->info(tr('Backup automatico eseguito correttamente!')); } else { - App::flash()->error(tr('Errore durante la generazione del backup automatico!')); + flash()->error(tr('Errore durante la generazione del backup automatico!')); } } } else { $status = Auth::getInstance()->getCurrentStatus(); - App::flash()->error(Auth::getStatus()[$status]['message']); + flash()->error(Auth::getStatus()[$status]['message']); redirect(ROOTDIR.'/index.php'); exit(); @@ -117,7 +117,7 @@ if (Auth::isBrute()) { '; } -if (!empty(App::flash()->getMessage('error'))) { +if (!empty(flash()->getMessage('error'))) { echo '