mirror of
https://github.com/smarty-php/smarty.git
synced 2026-07-09 01:40:52 +02:00
cf379474fd
- lexer/parser changed for increased compilation speed
23 lines
297 B
PHP
23 lines
297 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method enableConfigBooleanize
|
|
*
|
|
* Enable config booleanize mode
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Enable config booleanize mode
|
|
*/
|
|
function enableConfigBooleanize($smarty)
|
|
{
|
|
$smarty->config_booleanize = true;
|
|
return;
|
|
}
|
|
|
|
?>
|