1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 08:47:45 +02:00

[ticket/11415] Send the extension base the finder rather than the manager

PHPBB3-11415
This commit is contained in:
Nathan Guse
2013-05-10 14:01:31 -05:00
parent 27b2bbb8ff
commit f91f8666fd
2 changed files with 9 additions and 10 deletions

View File

@@ -137,11 +137,11 @@ class phpbb_extension_manager
if (class_exists($extension_class_name))
{
return new $extension_class_name($this->container, $this, $migrator, $name, $this->get_extension_path($name, true));
return new $extension_class_name($this->container, $this->get_finder(), $migrator, $name, $this->get_extension_path($name, true));
}
else
{
return new phpbb_extension_base($this->container, $this, $migrator, $name, $this->get_extension_path($name, true));
return new phpbb_extension_base($this->container, $this->get_finder(), $migrator, $name, $this->get_extension_path($name, true));
}
}