mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-18 23:15:21 +02:00
23 lines
299 B
PHP
23 lines
299 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method enableConfigOverwrite
|
|
*
|
|
* Enable config overwrite mode
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Enable config overwrite mode
|
|
*/
|
|
public function enableConfigOverwrite($smarty)
|
|
{
|
|
$smarty->config_overwrite = true;
|
|
return;
|
|
}
|
|
|
|
?>
|