Fix a compilation error which currently prevents from using etemplates

This commit is contained in:
Hans-Jürgen Tappe 2011-10-30 20:43:06 +00:00
parent 4ec8f909a1
commit abdcd1ca29

View File

@ -83,7 +83,7 @@ abstract class etemplate_widget_transformer extends etemplate_widget
$cell['id'] =& $cell['name']; // dto for 'name' instead of 'id'
// run the transformation
foreach(static::$transformation as $filter => $data)
foreach($this->transformation as $filter => $data)
{
$this->action($filter, $data, $cell);
}
@ -111,7 +111,7 @@ abstract class etemplate_widget_transformer extends etemplate_widget
$unmodified = $attrs;
// run the transformation
foreach(static::$transformation as $filter => $data)
foreach($this->transformation as $filter => $data)
{
$this->action($filter, $data, $attrs);
}