mirror of
https://github.com/smarty-php/smarty.git
synced 2026-07-08 17:30:45 +02:00
94b80e892b
- new security_class property (default is Smarty_Security)
22 lines
312 B
PHP
22 lines
312 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method DisableConfigOverwrite
|
|
*
|
|
* Disable config overwrite mode
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Disable config overwrite mode
|
|
*/
|
|
function Smarty_Method_DisableConfigOverwrite($smarty)
|
|
{
|
|
$smarty->config_overwrite = false;
|
|
return ;
|
|
}
|
|
?>
|