1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 08:47:45 +02:00

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
This commit is contained in:
Joas Schilling
2009-06-19 22:07:27 +00:00
parent d85a5ad036
commit 7d605da65b
3 changed files with 35 additions and 15 deletions

View File

@@ -640,7 +640,7 @@ class template_compile
*/
function compile_tag_include_php($tag_args)
{
return "include('" . $tag_args . "');";
return "\$this->_php_include('$tag_args');";
}
/**