1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-05 05:55:15 +02:00

[ticket/11385] Fix issue with migration module tool not getting extension module info

PHPBB3-11385
This commit is contained in:
OpenShift guest 2013-03-01 20:36:32 -05:00 committed by Nathaniel Guse
parent 4670ffe90c
commit c73f0a7c78

View File

@ -492,7 +492,7 @@ class phpbb_db_migration_tool_module implements phpbb_db_migration_tool_interfac
$acp_modules = new acp_modules();
$module = $acp_modules->get_module_infos($basename, $class, true);
if (empty($module));
if (empty($module))
{
throw new phpbb_db_migration_exception('MODULE_INFO_FILE_NOT_EXIST', $class, $basename);
}