[PHPVortex-Commit] phpvortex RS_MySQL.class.php,1.2,1.3
Brought to you by:
nop144666
From: Thiago R. <nop...@us...> - 2004-09-30 19:31:42
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5072 Modified Files: RS_MySQL.class.php Log Message: Fixed some (small but fatal) bugs in RS_MySQL Index: RS_MySQL.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/RS_MySQL.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RS_MySQL.class.php 28 Sep 2004 21:06:37 -0000 1.2 --- RS_MySQL.class.php 30 Sep 2004 19:31:26 -0000 1.3 *************** *** 95,99 **** function LastId() { ! return mysql_insert_id($this->db); } --- 95,99 ---- function LastId() { ! return mysql_insert_id($this->db->link); } *************** *** 105,109 **** function Error() { ! return mysql_error($this->db); } --- 105,109 ---- function Error() { ! return mysql_error($this->db->link); } |