mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-28 14:52:24 +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 '';
|
||||
|
||||
return "<?php echo TemplateHandler::getInstance()->compile('{$fileDir}','{$pathinfo['basename']}') ?>";
|
||||
return "<?php \$__tpl=TemplateHandler::getInstance();echo \$__tpl->compile('{$fileDir}','{$pathinfo['basename']}') ?>";
|
||||
|
||||
// <!--%load_js_plugin-->
|
||||
case 'load_js_plugin':
|
||||
|
|
@ -451,7 +451,7 @@
|
|||
if($pathinfo['basename'] == 'lang.xml' && substr($pathinfo['dirname'],-5) == '/lang') {
|
||||
$result = "Context::loadLang('{$relativeDir}');";
|
||||
} else {
|
||||
$result = "require_once('./classes/xml/XmlJsFilter.class.php');\$__xmlFilter = new XmlJsFilter('{$relativeDir}','{$pathinfo['basename']}');\$__xmlFilter->compile();";
|
||||
$result = "require_once('./classes/xml/XmlJsFilter.class.php');\$__xmlFilter=new XmlJsFilter('{$relativeDir}','{$pathinfo['basename']}');\$__xmlFilter->compile();";
|
||||
}
|
||||
break;
|
||||
case 'js':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue