aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/extension/manager.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-06 18:27:30 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-06-10 11:47:40 +0200
commit183492b01931dec5052e2087f70fa432a2f51b03 (patch)
tree44529b38da7872f3a66c1a95ba1370100f20c604 /phpBB/phpbb/extension/manager.php
parentd45c681b40cf0415ce49b2cd7f3f1083e84b367c (diff)
downloadforums-183492b01931dec5052e2087f70fa432a2f51b03.tar
forums-183492b01931dec5052e2087f70fa432a2f51b03.tar.gz
forums-183492b01931dec5052e2087f70fa432a2f51b03.tar.bz2
forums-183492b01931dec5052e2087f70fa432a2f51b03.tar.xz
forums-183492b01931dec5052e2087f70fa432a2f51b03.zip
[ticket/12508] Move \phpbb\extension\finder to \phpbb\finder
PHPBB3-12508
Diffstat (limited to 'phpBB/phpbb/extension/manager.php')
-rw-r--r--phpBB/phpbb/extension/manager.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/extension/manager.php b/phpBB/phpbb/extension/manager.php
index 88404b025e..bfc6e19b5b 100644
--- a/phpBB/phpbb/extension/manager.php
+++ b/phpBB/phpbb/extension/manager.php
@@ -532,14 +532,14 @@ class manager
}
/**
- * Instantiates a \phpbb\extension\finder.
+ * Instantiates a \phpbb\finder.
*
* @param bool $use_all_available Should we load all extensions, or just enabled ones
- * @return \phpbb\extension\finder An extension finder instance
+ * @return \phpbb\finder An extension finder instance
*/
public function get_finder($use_all_available = false)
{
- $finder = new \phpbb\extension\finder($this->filesystem, $this->phpbb_root_path, $this->cache, $this->php_ext, $this->cache_name . '_finder');
+ $finder = new \phpbb\finder($this->filesystem, $this->phpbb_root_path, $this->cache, $this->php_ext, $this->cache_name . '_finder');
if ($use_all_available)
{
$finder->set_extensions($this->all_available());