aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/includephp_test.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-07-24 13:37:46 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-07-24 13:37:46 -0400
commite116561348b7bd3400bfe6acccf5eebaaaa7f562 (patch)
treea42f4d5f04823a5bf44556699dd9259e1e443de3 /tests/template/includephp_test.php
parentee203b46328f3a0e1297197e50b30487d1eab248 (diff)
downloadforums-e116561348b7bd3400bfe6acccf5eebaaaa7f562.tar
forums-e116561348b7bd3400bfe6acccf5eebaaaa7f562.tar.gz
forums-e116561348b7bd3400bfe6acccf5eebaaaa7f562.tar.bz2
forums-e116561348b7bd3400bfe6acccf5eebaaaa7f562.tar.xz
forums-e116561348b7bd3400bfe6acccf5eebaaaa7f562.zip
[feature/template-engine] Rename is_absolute to phpbb_is_absolute.
PHPBB3-9726
Diffstat (limited to 'tests/template/includephp_test.php')
-rw-r--r--tests/template/includephp_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/template/includephp_test.php b/tests/template/includephp_test.php
index 64240e1be8..aac9cccc8a 100644
--- a/tests/template/includephp_test.php
+++ b/tests/template/includephp_test.php
@@ -26,7 +26,7 @@ class phpbb_template_includephp_test extends phpbb_template_template_test_case
public function test_includephp_absolute()
{
$path_to_php = dirname(__FILE__) . '/templates/_dummy_include.php.inc';
- $this->assertTrue(is_absolute($path_to_php));
+ $this->assertTrue(phpbb_is_absolute($path_to_php));
$template_text = "Path is absolute.\n<!-- INCLUDEPHP $path_to_php -->";
$cache_dir = dirname($this->template->cachepath) . '/';