remove pass by reference

This commit is contained in:
james 2019-01-28 15:23:23 +00:00
parent 3abf8f1fe0
commit 178817c9c5

View File

@ -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;