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'))) {
|
||||
//grab the table
|
||||
$this->classname=$classname;
|
||||
call_user_func(array($this->classname, 'tableEditorSetup'), &$this);
|
||||
call_user_func(array($this->classname, 'tableEditorSetup'), $this);
|
||||
} else {
|
||||
//grab the list fields
|
||||
$this->listfields=$listfields;
|
||||
|
Loading…
Reference in New Issue
Block a user