mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 05:55:20 +02:00
23 lines
308 B
PHP
23 lines
308 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method disableConfigBooleanize
|
|
*
|
|
* Disable config booleanize mode
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Disable config booleanize mode
|
|
*/
|
|
function disableConfigBooleanize($smarty)
|
|
{
|
|
$this->smarty->config_booleanize = false;
|
|
return;
|
|
}
|
|
|
|
?>
|