Skip to content

Commit d6c277f

Browse files
committed
Merge remote branch 'stof/escaping'
* stof/escaping: Fixed escaping for arguments
2 parents 67ec6e5 + 156a5dc commit d6c277f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/TwigBundle/Extension/TemplatingExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getFilters()
5252
'abbr_class' => new \Twig_Filter_Method($this, 'abbrClass', array('is_safe' => array('html'))),
5353
'abbr_method' => new \Twig_Filter_Method($this, 'abbrMethod', array('is_safe' => array('html'))),
5454
'format_args' => new \Twig_Filter_Method($this, 'formatArgs', array('is_safe' => array('html'))),
55-
'format_args_as_text' => new \Twig_Filter_Method($this, 'formatArgsAsText', array('is_safe' => array('html'))),
55+
'format_args_as_text' => new \Twig_Filter_Method($this, 'formatArgsAsText'),
5656
'file_excerpt' => new \Twig_Filter_Method($this, 'fileExcerpt', array('is_safe' => array('html'))),
5757
'format_file' => new \Twig_Filter_Method($this, 'formatFile', array('is_safe' => array('html'))),
5858
'format_file_from_text' => new \Twig_Filter_Method($this, 'formatFileFromText', array('is_safe' => array('html'))),

0 commit comments

Comments
 (0)