diff --git a/tableeditor.class.php b/tableeditor.class.php index a163dc3..3e47dc2 100644 --- a/tableeditor.class.php +++ b/tableeditor.class.php @@ -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(); }