1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 22:40:39 +02:00

[ticket/12841] prefix function name with phpbb_

PHPBB3-12841
This commit is contained in:
Matt Friedman
2014-07-24 07:44:35 -07:00
parent 0d320186cf
commit 056584680b
2 changed files with 2 additions and 2 deletions

View File

@@ -135,7 +135,7 @@ class phpbb_functions_insert_config_array_test extends phpbb_test_case
public function test_insert_config_array($new_config, $position, $expected)
{
$config_array = $this->config_display_vars();
$new_config_array = insert_config_array($config_array, $new_config, $position);
$new_config_array = phpbb_insert_config_array($config_array, $new_config, $position);
$this->assertSame($expected, $new_config_array);
}