remove last pass by reference

This commit is contained in:
james 2019-01-28 16:44:25 +00:00
parent 178817c9c5
commit ff169e7f39

View File

@ -997,7 +997,7 @@ class TableEditor
$query="SELECT SQL_CALC_FOUND_ROWS {$this->primaryKey}";
if(is_callable(array($this->classname, 'tableEditorGetList'))) {
list($sel, $from, $where) = call_user_func(array($this->classname, 'tableEditorGetList'), &$this);
list($sel, $from, $where) = call_user_func(array($this->classname, 'tableEditorGetList'), $this);
} else {
list($sel, $from, $where) = $this->defaultGetList();
}