Update of /cvsroot/phpvortex/phpvortex
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24703
Modified Files:
RS_MySQL.class.php
Log Message:
Fixed a small bug in RS_MySQL
Index: RS_MySQL.class.php
===================================================================
RCS file: /cvsroot/phpvortex/phpvortex/RS_MySQL.class.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** RS_MySQL.class.php 30 Sep 2004 19:31:26 -0000 1.3
--- RS_MySQL.class.php 7 Oct 2004 18:32:41 -0000 1.4
***************
*** 69,72 ****
--- 69,73 ----
function SetRow($row = 0)
{
+ if (!mysql_num_rows($this->result)) return FALSE;
if (!mysql_data_seek($this->result, $row)) return FALSE;
$this->row = $row;
|