replaced call for foreach(static:: with self::...

This commit is contained in:
Klaus Leithoff 2012-05-14 12:08:34 +00:00
parent 46deabf2b6
commit 408b66f975

View File

@ -111,7 +111,7 @@ abstract class etemplate_widget_transformer extends etemplate_widget
$unmodified = $attrs;
// run the transformation
foreach(static::$transformation as $filter => $data)
foreach(self::$transformation as $filter => $data)
{
$this->action($filter, $data, $attrs);
}