diff --git a/KNOWN-ISSUES.md b/KNOWN-ISSUES.md index 7004a6570..a6b64f72a 100644 --- a/KNOWN-ISSUES.md +++ b/KNOWN-ISSUES.md @@ -1,6 +1,23 @@ In questo file verranno riassunte le problematiche del gestionale che sono giĆ  note alla community. Le problematiche saranno raggruppate per release e le relative correzioni (se applicabili) saranno riportate sotto la sezione **Soluzione**. +#### 2.4.54 - 03/02/2024 + +##### Problemi noti +- In fase di installazione non viene compilato il file config se assente + +##### Soluzione +Modificare il file index.php sostituendo il blocco di codice che inizia alla riga 30 con + +```php +if ($dbo->isConnected()) { + try { + $microsoft = $dbo->selectOne('zz_oauth2', '*', ['nome' => 'Microsoft', 'enabled' => 1, 'is_login' => 1]); + } catch (QueryException $e) { + } +} +``` +oppure aggiornare alla **v.2.5** di OpenSTAManager. #### 2.4.35 - 12/08/2022 @@ -10,7 +27,9 @@ Le problematiche saranno raggruppate per release e le relative correzioni (se ap ##### Soluzione Eseguire a database le seguenti query di allineamento: -- UPDATE `zz_modules` SET `icon` = 'fa fa-exchange' WHERE `id` = (SELECT `id_record` FROM `zz_modules_lang` WHERE `name` = 'Causali movimenti'); -- ALTER TABLE `zz_groups` ADD `id_module_start` INT NULL AFTER `editable`; +```bash +UPDATE `zz_modules` SET `icon` = 'fa fa-exchange' WHERE `id` = (SELECT `id_record` FROM `zz_modules_lang` WHERE `name` = 'Causali movimenti'); +ALTER TABLE `zz_groups` ADD `id_module_start` INT NULL AFTER `editable`; +``` -oppure aggiornare alla **v.2.4.55** di OpenSTAManager. \ No newline at end of file +oppure aggiornare alla **v.2.5** di OpenSTAManager. \ No newline at end of file