From ff169e7f398ea7e45911373fcfd0880dcda7e197 Mon Sep 17 00:00:00 2001 From: james Date: Mon, 28 Jan 2019 16:44:25 +0000 Subject: [PATCH] remove last pass by reference --- tableeditor.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }