mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 08:19:45 +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'
|
$cell['id'] =& $cell['name']; // dto for 'name' instead of 'id'
|
||||||
|
|
||||||
// run the transformation
|
// run the transformation
|
||||||
foreach(static::$transformation as $filter => $data)
|
foreach($this->transformation as $filter => $data)
|
||||||
{
|
{
|
||||||
$this->action($filter, $data, $cell);
|
$this->action($filter, $data, $cell);
|
||||||
}
|
}
|
||||||
@ -111,7 +111,7 @@ abstract class etemplate_widget_transformer extends etemplate_widget
|
|||||||
$unmodified = $attrs;
|
$unmodified = $attrs;
|
||||||
|
|
||||||
// run the transformation
|
// run the transformation
|
||||||
foreach(static::$transformation as $filter => $data)
|
foreach($this->transformation as $filter => $data)
|
||||||
{
|
{
|
||||||
$this->action($filter, $data, $attrs);
|
$this->action($filter, $data, $attrs);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user