mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-02 21:31:48 +01:00
- removed all internal calls of Smarty::instance()
- fixed code in double quoted strings
This commit is contained in:
@@ -11,16 +11,12 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Smarty class enableConfigBooleanize
|
||||
*
|
||||
* Enable config booleanize mode
|
||||
*/
|
||||
class Smarty_Method_enableConfigBooleanize extends Smarty_Internal_Base {
|
||||
public function execute()
|
||||
{
|
||||
$this->smarty->config_booleanize = true;
|
||||
return;
|
||||
}
|
||||
function enableConfigBooleanize($smarty)
|
||||
{
|
||||
$smarty->config_booleanize = true;
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user