1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/13777] Reorder get_module_infos() method's arguments

PHPBB3-13777
This commit is contained in:
MateBartus
2015-05-31 16:03:11 +02:00
parent fcff3ee4ad
commit 4044b5df89
5 changed files with 18 additions and 23 deletions

View File

@@ -461,7 +461,7 @@ class module implements \phpbb\db\migration\tool\tool_interface
*/
protected function get_module_info($class, $basename)
{
$module = $this->module_manager->get_module_infos($basename, $class, true);
$module = $this->module_manager->get_module_infos($class, $basename, true);
if (empty($module))
{