1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-17 03:51:06 +01:00

Fix per funzione base_path non trovata in fase di aggiornamento da versione < 2.4.19

This commit is contained in:
Luca 2020-11-23 18:05:45 +01:00
parent 89f38c8c9e
commit fdd6a69f0a

View File

@ -76,6 +76,11 @@ if (function_exists('customComponents')) {
} }
} }
//Fix per funzione base_path non trovata in fase di aggiornamento da versione < 2.4.19
if (!function_exists('base_path')) {
return ROOTDIR;
}
// Aggiornamenti // Aggiornamenti
if (setting('Attiva aggiornamenti')) { if (setting('Attiva aggiornamenti')) {
$alerts = []; $alerts = [];