Files
smarty/libs/sysplugins/smarty_method_setdebugtemplate.php
Uwe.Tews cf379474fd - change of filenames in sysplugins folder for internal spl_autoload function
- lexer/parser changed for increased compilation speed
2009-10-31 00:44:58 +00:00

29 lines
383 B
PHP

<?php
/**
* Smarty method setDebugTemplate
*
* Sets debug template filepath
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Sets debug template filepath
*/
/**
* Sets debug template filepath
*
* @param string $ array debug template filepath
*/
function SetDebugTemplate($smarty, $debug_tpl)
{
$smarty->debug_tpl = $debug_tpl;
return;
}
?>