diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2009-06-19 22:07:27 +0000 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2009-06-19 22:07:27 +0000 |
commit | 7d605da65bda85c26d13c810bbfc051b3495b76d (patch) | |
tree | a842d5359fa59761fc732009544767e9b938022f /phpBB/includes/functions_template.php | |
parent | d85a5ad036b2088fe742de29d9464678d2e19e23 (diff) | |
download | forums-7d605da65bda85c26d13c810bbfc051b3495b76d.tar forums-7d605da65bda85c26d13c810bbfc051b3495b76d.tar.gz forums-7d605da65bda85c26d13c810bbfc051b3495b76d.tar.bz2 forums-7d605da65bda85c26d13c810bbfc051b3495b76d.tar.xz forums-7d605da65bda85c26d13c810bbfc051b3495b76d.zip |
Fix bug #45805 - INCLUDEPHP not depending on phpbb_root_path
Authorised by: acydburn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9633 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_template.php')
-rw-r--r-- | phpBB/includes/functions_template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_template.php b/phpBB/includes/functions_template.php index d9d9abfe46..a951579db5 100644 --- a/phpBB/includes/functions_template.php +++ b/phpBB/includes/functions_template.php @@ -640,7 +640,7 @@ class template_compile */ function compile_tag_include_php($tag_args) { - return "include('" . $tag_args . "');"; + return "\$this->_php_include('$tag_args');"; } /** |