CVS update: /cowiki/includes/cowiki/class/dao/

[email protected] 12 Apr 2005 19:24:39 -0000
Newsgroups gmane.comp.php.cowiki.cvs
Message-ID <[email protected]>
User: dgorski 
Date: 05/04/12 12:24:39

Modified:
 /cowiki/includes/cowiki/class/dao/
  class.StorageMySQLi.php

Log:
 Fugbix

File Changes:

Directory: /cowiki/includes/cowiki/class/dao/
=============================================

File [changed]: class.StorageMySQLi.php
Url: http://cowiki.tigris.org/source/browse/cowiki/includes/cowiki/class/dao/class.StorageMySQLi.php?r1=1.1&r2=1.2
Delta lines:  +3 -3
-------------------
--- class.StorageMySQLi.php	12 Apr 2005 18:09:33 -0000	1.1
+++ class.StorageMySQLi.php	12 Apr 2005 19:24:39 -0000	1.2
@@ -2,7 +2,7 @@
 
 /**
  *
- * $Id: class.StorageMySQLi.php,v 1.1 2005/04/12 18:09:33 dgorski Exp $
+ * $Id: class.StorageMySQLi.php,v 1.2 2005/04/12 19:24:39 dgorski Exp $
  *
  * This file is part of coWiki. coWiki is free software under the terms of
  * the GNU General Public License (GPL). Read the LICENSE file. If you did
@@ -17,7 +17,7 @@
  * @author      Daniel T. Gorski, <[email protected]>
  * @copyright   (C) Daniel T. Gorski, {@link http://www.develnet.org}
  * @license     http://www.gnu.org/licenses/gpl.html
- * @version     $Revision: 1.1 $
+ * @version     $Revision: 1.2 $
  *
  */
 
@@ -151,7 +151,7 @@
     // --------------------------------------------------------------------
 
     protected function setLastInsertId() {
-        $this->sLastId = @mysql_insert_id($this->rLink);
+        $this->sLastId = @mysqli_insert_id($this->rLink);
     }
     
     // --------------------------------------------------------------------