From c8a5475c08a122c341c607a6add0176051267327 Mon Sep 17 00:00:00 2001 From: Louis Rossouw Date: Fri, 17 Jul 2015 06:15:57 +0200 Subject: [PATCH] Fix return in dbBulkInsert. --- includes/dbFacile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/dbFacile.php b/includes/dbFacile.php index 06203ef39..0d1d7150c 100644 --- a/includes/dbFacile.php +++ b/includes/dbFacile.php @@ -158,7 +158,7 @@ function dbBulkInsert($data, $table) { $db_stats['insert_sec'] += number_format(($time_end - $time_start), 8); $db_stats['insert']++; - return $id; + return $result; }//end dbBulkInsert()