1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-29 02:29:21 +02:00

[ticket/develop/11568] Remove php extension parameter

We don't support that in 3.1 anymore

PHPBB3-11568
This commit is contained in:
Joas Schilling 2013-05-30 10:49:13 +02:00
parent f1523944a0
commit 4f6b12ae1d

View File

@ -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);