mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
Fix a compilation error which currently prevents from using etemplates
This commit is contained in:
parent
4ec8f909a1
commit
abdcd1ca29
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user