mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-12 05:22:35 +09:00
Fixed a template bug in PHP4
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9549 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
98d168abc4
commit
64ca49bee0
2 changed files with 5 additions and 5 deletions
|
|
@ -417,7 +417,7 @@
|
||||||
|
|
||||||
if(!$fileDir) return '';
|
if(!$fileDir) return '';
|
||||||
|
|
||||||
return "<?php echo TemplateHandler::getInstance()->compile('{$fileDir}','{$pathinfo['basename']}') ?>";
|
return "<?php \$__tpl=TemplateHandler::getInstance();echo \$__tpl->compile('{$fileDir}','{$pathinfo['basename']}') ?>";
|
||||||
|
|
||||||
// <!--%load_js_plugin-->
|
// <!--%load_js_plugin-->
|
||||||
case 'load_js_plugin':
|
case 'load_js_plugin':
|
||||||
|
|
|
||||||
|
|
@ -102,12 +102,12 @@ class TemplateHandlerTest extends PHPUnit_Framework_TestCase
|
||||||
// #include
|
// #include
|
||||||
array(
|
array(
|
||||||
'<dummy /><!--#include("sample.html")--><div>This is another dummy</div>',
|
'<dummy /><!--#include("sample.html")--><div>This is another dummy</div>',
|
||||||
'<dummy /><?php echo TemplateHandler::getInstance()->compile(\'tests/classes/template\',\'sample.html\') ?><div>This is another dummy</div>'
|
'<dummy /><?php $__tpl=TemplateHandler::getInstance();echo $__tpl->compile(\'tests/classes/template\',\'sample.html\') ?><div>This is another dummy</div>'
|
||||||
),
|
),
|
||||||
// <include target="file">
|
// <include target="file">
|
||||||
array(
|
array(
|
||||||
'<dummy /><include target="../sample.html" /><div>This is another dummy</div>',
|
'<dummy /><include target="../sample.html" /><div>This is another dummy</div>',
|
||||||
'<dummy /><?php echo TemplateHandler::getInstance()->compile(\'tests/classes\',\'sample.html\') ?><div>This is another dummy</div>'
|
'<dummy /><?php $__tpl=TemplateHandler::getInstance();echo $__tpl->compile(\'tests/classes\',\'sample.html\') ?><div>This is another dummy</div>'
|
||||||
),
|
),
|
||||||
// <load target="../../../modules/page/lang/lang.xml">
|
// <load target="../../../modules/page/lang/lang.xml">
|
||||||
array(
|
array(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue