1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-02 22:45:02 +03:00
ifhub.club/engine/modules/viewer/lsSmarty.class.php

9 lines
314 B
PHP

<?php
class lsSmarty extends Smarty {
function _smarty_include($params) {
if (isset($params['smarty_include_tpl_file'])) {
$params['smarty_include_tpl_file']=Engine::getInstance()->Plugin_GetDelegate('template',$params['smarty_include_tpl_file']);
}
parent::_smarty_include($params);
}
}