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 disableVariableFilter
|
||||
*
|
||||
* Disable filter on variable output
|
||||
*/
|
||||
class Smarty_Method_disableVariableFilter extends Smarty_Internal_Base {
|
||||
public function execute()
|
||||
{
|
||||
$this->smarty->variable_filter = false;
|
||||
return;
|
||||
}
|
||||
function disableVariableFilter($smarty)
|
||||
{
|
||||
$smarty->variable_filter = false;
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user