Files
smarty/libs/sysplugins/method.disableconfigreadhidden.php
Uwe.Tews d2d8c8925b - removed all internal calls of Smarty::instance()
- fixed code in double quoted strings
2009-08-08 17:28:23 +00:00

22 lines
311 B
PHP

<?php
/**
* Smarty method disableConfigReadHidden
*
* Disable config read hidden mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable config read hidden mode
*/
function disableConfigReadHidden ($smarty)
{
$this->smarty->config_read_hidden = false;
return;
}
?>