Files
ventas_php/libs/sysplugins/smarty_method_enableconfigoverwrite.php

23 lines
307 B
PHP
Executable File

<?php
/**
* Smarty method EnableConfigOverwrite
*
* Enable config overwrite mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable config overwrite mode
*/
function Smarty_Method_EnableConfigOverwrite($smarty)
{
$smarty->config_overwrite = true;
return;
}
?>