1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/10848] Add phpbb_ prefix.

PHPBB3-10848
This commit is contained in:
Oleg Pudeyev
2012-10-17 15:13:35 -04:00
parent c630480ca1
commit bb09cd9c8e
3 changed files with 3 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ class phpbb_clean_path_test extends phpbb_test_case
*/
public function test_clean_path($input, $expected)
{
$output = clean_path($input);
$output = phpbb_clean_path($input);
$this->assertEquals($expected, $output);
}