aboutsummaryrefslogtreecommitdiffstats
path: root/tests/pagination
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-09 09:24:30 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-06-10 11:47:41 +0200
commit6980fbd27bd57dc01d7265cc742ab01a4bd9f93a (patch)
treeb41a678373e62518ec34b139860031bf6dc5a4d4 /tests/pagination
parente1707b27ca8b998652fddee571197b24974ebb2f (diff)
downloadforums-6980fbd27bd57dc01d7265cc742ab01a4bd9f93a.tar
forums-6980fbd27bd57dc01d7265cc742ab01a4bd9f93a.tar.gz
forums-6980fbd27bd57dc01d7265cc742ab01a4bd9f93a.tar.bz2
forums-6980fbd27bd57dc01d7265cc742ab01a4bd9f93a.tar.xz
forums-6980fbd27bd57dc01d7265cc742ab01a4bd9f93a.zip
[ticket/12508] Only take a list of names for set_extensions()
PHPBB3-12508
Diffstat (limited to 'tests/pagination')
-rw-r--r--tests/pagination/pagination_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pagination/pagination_test.php b/tests/pagination/pagination_test.php
index ecdacc21a4..f253118253 100644
--- a/tests/pagination/pagination_test.php
+++ b/tests/pagination/pagination_test.php
@@ -40,7 +40,7 @@ class phpbb_pagination_pagination_test extends phpbb_template_template_test_case
dirname(__FILE__) . '/',
new phpbb_mock_cache()
);
- $finder->set_extensions($manager->all_enabled());
+ $finder->set_extensions(array_keys($manager->all_enabled()));
$this->config = new \phpbb\config\config(array('enable_mod_rewrite' => '1'));
$provider = new \phpbb\controller\provider();