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

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;
}
?>