helpers/attributes: escape value

refs #7177
This commit is contained in:
Thomas Gelf 2014-09-10 16:07:00 +02:00
parent 27960fc628
commit c2fe0232ca
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ $this->addHelperFunction('attributeToString', function ($key, $value)
return sprintf(
'%s="%s"',
$key,
$value
$this->escape($value)
);
});