N°5211 - Core update not working with auto-selected modules

This commit is contained in:
Eric Espie
2022-06-08 10:12:19 +02:00
parent 34bed5ec4f
commit cdd7dcdc5c
2 changed files with 3 additions and 15 deletions

View File

@@ -944,9 +944,9 @@ class ModelFactory
$aLoadedModuleNames = array();
foreach (self::$aLoadedModules as $oModule)
{
$aLoadedModuleNames[] = $oModule->GetName();
$aLoadedModuleNames[] = $oModule->GetName().':'.$oModule->GetVersion();
}
throw new Exception('Error loading module "'.$oModule->GetName().'": '.$e->getMessage().' - Loaded modules: '.implode(',',
throw new Exception('Error loading module "'.$oModule->GetName().'": '.$e->getMessage().' - Loaded modules: '.implode(', ',
$aLoadedModuleNames));
}
}