mirror of
https://github.com/Combodo/iTop.git
synced 2026-06-21 23:36:36 +02:00
N°9678 - Datamodel not added after extension management setup (#936)
* N°9678 - Datamodel not added after extension management setup * N°9678 - fix selecting extensions from extensions folder in extension mgt view * cleanup: remove cached stuff in runtimeenv * N°9678 - Refactor iTopExtensionsMap instantiation to use GetExtensionsMap method * N°9678 - Refactor data model compilation and improve directory scanning logic * N°9678 - Handle MySQLException in ModuleInstallationRepository and remove unnecessary error logging in WizStepModulesChoice --------- Co-authored-by: Eric Espie <eric.espie@combodo.com>
This commit is contained in:
@@ -68,7 +68,12 @@ WHERE
|
||||
parent_id='$iRootId'
|
||||
OR id='$iRootId'
|
||||
SQL;
|
||||
return CMDBSource::QueryToArray($sSQL);
|
||||
try {
|
||||
return CMDBSource::QueryToArray($sSQL);
|
||||
} catch (MySQLException $e) {
|
||||
SetupLog::Exception(__METHOD__, $e);
|
||||
throw $e;
|
||||
}
|
||||
}
|
||||
|
||||
private function GetTableWithPrefix(Config $oConfig)
|
||||
|
||||
Reference in New Issue
Block a user