diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2013-05-30 10:49:13 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2013-05-30 10:49:13 +0200 |
| commit | 4f6b12ae1d4b9ac681efff0651a0007fed6942b6 (patch) | |
| tree | fb7d19b10168322e6d4e3f53adb14f54857b21d8 /tests/test_framework | |
| parent | f1523944a048e22207d6f200c6d152ecb9fdc136 (diff) | |
| download | forums-4f6b12ae1d4b9ac681efff0651a0007fed6942b6.tar forums-4f6b12ae1d4b9ac681efff0651a0007fed6942b6.tar.gz forums-4f6b12ae1d4b9ac681efff0651a0007fed6942b6.tar.bz2 forums-4f6b12ae1d4b9ac681efff0651a0007fed6942b6.tar.xz forums-4f6b12ae1d4b9ac681efff0651a0007fed6942b6.zip | |
[ticket/develop/11568] Remove php extension parameter
We don't support that in 3.1 anymore
PHPBB3-11568
Diffstat (limited to 'tests/test_framework')
| -rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index 42d38255f7..e5e08df5fc 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -288,7 +288,7 @@ class phpbb_functional_test_case extends phpbb_test_case $crawler = self::submit($form); self::assertContains('The configuration file has been written.', $crawler->filter('#main')->text()); - file_put_contents($phpbb_root_path . "config.$phpEx", phpbb_create_config_file_data(self::$config, self::$config['dbms'], array(), true, true)); + file_put_contents($phpbb_root_path . "config.$phpEx", phpbb_create_config_file_data(self::$config, self::$config['dbms'], true, true)); $form = $crawler->selectButton('submit')->form(); $crawler = self::submit($form); |
