Files
smarty/libs/sysplugins/method.setdebugtemplate.php
Uwe.Tews d2d8c8925b - removed all internal calls of Smarty::instance()
- fixed code in double quoted strings
2009-08-08 17:28:23 +00:00

29 lines
382 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;
}
?>