Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_setdebugtemplate.php
1 <?php
3 /**
4 * Smarty method SetDebugTemplate
5
6 * Sets debug template filepath
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Sets debug template filepath
15 */
17 /**
18 * Sets debug template filepath
19
20 * @param string $ array debug template filepath
21 */
22 function  Smarty_Method_SetDebugTemplate($smarty, $debug_tpl)
23 {
24     $smarty->debug_tpl = $debug_tpl;
25     return;
26
28 ?>