forked from science-ation/science-ation
remove last pass by reference
This commit is contained in:
parent
178817c9c5
commit
ff169e7f39
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user