Files
smarty/libs/sysplugins/smarty_method_disableconfigreadhidden.php
T

22 lines
326 B
PHP
Raw Normal View History

2009-04-02 12:24:50 +00:00
<?php
/**
* Smarty method DisableConfigReadHidden
2009-04-02 12:24:50 +00:00
*
* Disable config read hidden mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable config read hidden mode
*/
function Smarty_Method_DisableConfigReadHidden ($smarty)
{
$this->smarty->config_read_hidden = false;
return;
2009-04-02 12:24:50 +00:00
}
?>