[Phplib-commit] CVS: php-lib-stable/php db_mysql.inc,1.4,1.5
Brought to you by:
nhruby,
richardarcher
From: Richard A. <ric...@us...> - 2001-08-13 22:54:36
|
Update of /cvsroot/phplib/php-lib-stable/php In directory usw-pr-cvs1:/tmp/cvs-serv25231 Modified Files: db_mysql.inc Log Message: Fix call to $this->num_rows() in seek(). Bug ID #445391. Index: db_mysql.inc =================================================================== RCS file: /cvsroot/phplib/php-lib-stable/php/db_mysql.inc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** db_mysql.inc 2001/08/12 05:24:44 1.4 --- db_mysql.inc 2001/08/13 22:54:33 1.5 *************** *** 158,162 **** */ @mysql_data_seek($this->Query_ID, $this->num_rows()); ! $this->Row = $this->num_rows; return 0; } --- 158,162 ---- */ @mysql_data_seek($this->Query_ID, $this->num_rows()); ! $this->Row = $this->num_rows(); return 0; } |