forked from science-ation/science-ation
remove pass by reference
This commit is contained in:
parent
3abf8f1fe0
commit
178817c9c5
@ -162,7 +162,7 @@ class TableEditor
|
|||||||
if(is_callable(array($classname, 'tableEditorSetup'))) {
|
if(is_callable(array($classname, 'tableEditorSetup'))) {
|
||||||
//grab the table
|
//grab the table
|
||||||
$this->classname=$classname;
|
$this->classname=$classname;
|
||||||
call_user_func(array($this->classname, 'tableEditorSetup'), &$this);
|
call_user_func(array($this->classname, 'tableEditorSetup'), $this);
|
||||||
} else {
|
} else {
|
||||||
//grab the list fields
|
//grab the list fields
|
||||||
$this->listfields=$listfields;
|
$this->listfields=$listfields;
|
||||||
|
Loading…
Reference in New Issue
Block a user