From f0cc9260ca523751f6d4b88c34330dd3c33bf527 Mon Sep 17 00:00:00 2001 From: franzz Date: Tue, 15 Oct 2013 23:25:15 +0200 Subject: [PATCH] fix: last id modified --- config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.php b/config.php index 505cb35..b843025 100755 --- a/config.php +++ b/config.php @@ -4038,7 +4038,7 @@ class MySqlManager extends PhpObject private function getLastId() { - return mysql_insert_id(); + return $this->oConnection->insert_id; } public function insertRow($sTableName, $asData)