mirror of
https://github.com/smarty-php/smarty.git
synced 2026-07-08 17:30:45 +02:00
94b80e892b
- new security_class property (default is Smarty_Security)
29 lines
398 B
PHP
29 lines
398 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 Smarty_Method_SetDebugTemplate($smarty, $debug_tpl)
|
|
{
|
|
$smarty->debug_tpl = $debug_tpl;
|
|
return;
|
|
}
|
|
|
|
?>
|