From db4f82ba2f17c19ac28926543839755abd4efa96 Mon Sep 17 00:00:00 2001 From: Cameron Date: Mon, 11 Feb 2019 17:15:00 -0800 Subject: [PATCH] set default null value --- e107_handlers/e_db_pdo_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/e_db_pdo_class.php b/e107_handlers/e_db_pdo_class.php index ad8547e29..fc78a00da 100644 --- a/e107_handlers/e_db_pdo_class.php +++ b/e107_handlers/e_db_pdo_class.php @@ -490,7 +490,7 @@ class e_db_pdo implements e_db * @param boolean $debug * @return mixed */ - public function retrieve($table, $fields = null, $where=null, $multi = false, $indexField = null, $debug = false) + public function retrieve($table=null, $fields = null, $where=null, $multi = false, $indexField = null, $debug = false) { // fetch mode if(empty($table))