game/onyx2/modules/templates/smarty/sysplugins/smarty_method_disableconfigoverwrite.php

22 lines
297 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method disableConfigOverwrite
*
* Disable config overwrite mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable config overwrite mode
*/
function disableConfigOverwrite($smarty)
{
$smarty->config_overwrite = false;
return ;
}
?>