Files
smarty/libs/sysplugins/smarty_method_disableconfigoverwrite.php
T

22 lines
312 B
PHP
Raw Normal View History

2009-04-02 12:24:50 +00:00
<?php
/**
* Smarty method DisableConfigOverwrite
2009-04-02 12:24:50 +00:00
*
* Disable config overwrite mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable config overwrite mode
*/
function Smarty_Method_DisableConfigOverwrite($smarty)
{
$smarty->config_overwrite = false;
return ;
2009-04-02 12:24:50 +00:00
}
?>