From b393cb506b05bf4726e9c593f72be9aa07e5794e Mon Sep 17 00:00:00 2001 From: tDidierjean Date: Thu, 21 Jul 2011 08:05:53 +0000 Subject: [PATCH] // fix mysql insert_id --- 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); } /**