From 884e95f307adf383e27ece2207606c5ba98d9e7f Mon Sep 17 00:00:00 2001 From: tDidierjean Date: Thu, 21 Jul 2011 08:05:53 +0000 Subject: [PATCH] // fix mysql insert_id git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@7671 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/MySQL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/MySQL.php b/classes/MySQL.php index ac3b6e9eb..844825ec8 100644 --- a/classes/MySQL.php +++ b/classes/MySQL.php @@ -87,7 +87,7 @@ class MySQLCore extends Db */ public function Insert_ID() { - mysql_insert_id($this->_link); + return mysql_insert_id($this->_link); } /**