viewHelpers: There is no $this, not before 5.4

refs #7177
This commit is contained in:
Thomas Gelf 2014-09-10 16:54:57 +02:00
parent c2fe0232ca
commit 631b3d9f6e

View File

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