1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Merge remote-tracking branch 'bantu/ticket/11540' into develop

* bantu/ticket/11540:
  [ticket/11540] Add phpbb_ prefix in is_absolute_test from olympus.
This commit is contained in:
Andreas Fischer
2013-05-15 13:52:48 +02:00

View File

@@ -29,6 +29,6 @@ class phpbb_functions_is_absolute_test extends phpbb_test_case
*/
public function test_is_absolute($path, $expected)
{
$this->assertEquals($expected, is_absolute($path));
$this->assertEquals($expected, phpbb_is_absolute($path));
}
}