aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/extension/manager.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-05-10 14:01:31 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2013-05-10 14:01:31 -0500
commitf91f8666fd423c3e9f74d05355c8fa3e8ece2de9 (patch)
tree12270c8a56a57ed61d3819cef3cbdc506781e5e8 /phpBB/includes/extension/manager.php
parent27b2bbb8ff9efc6e06cfc5077dc939b1f1f7d0e5 (diff)
downloadforums-f91f8666fd423c3e9f74d05355c8fa3e8ece2de9.tar
forums-f91f8666fd423c3e9f74d05355c8fa3e8ece2de9.tar.gz
forums-f91f8666fd423c3e9f74d05355c8fa3e8ece2de9.tar.bz2
forums-f91f8666fd423c3e9f74d05355c8fa3e8ece2de9.tar.xz
forums-f91f8666fd423c3e9f74d05355c8fa3e8ece2de9.zip
[ticket/11415] Send the extension base the finder rather than the manager
PHPBB3-11415
Diffstat (limited to 'phpBB/includes/extension/manager.php')
-rw-r--r--phpBB/includes/extension/manager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/extension/manager.php b/phpBB/includes/extension/manager.php
index 799c8b2418..48b72bcdd0 100644
--- a/phpBB/includes/extension/manager.php
+++ b/phpBB/includes/extension/manager.php
@@ -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));
}
}