mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-18 15:05:19 +02:00
22 lines
326 B
PHP
22 lines
326 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method DisableConfigReadHidden
|
|
*
|
|
* 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;
|
|
}
|
|
?>
|