Update of /cvsroot/phpbb-php5mod/phpbb-php5/db
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30886/db
Modified Files:
mysql.php mysql4.php mysqli.php
Log Message:
2.0.18
Index: mysql.php
===================================================================
RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/db/mysql.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** mysql.php 29 Jul 2004 22:36:00 -0000 1.1
--- mysql.php 31 Oct 2005 03:18:41 -0000 1.2
***************
*** 264,268 ****
else if($this->row[$query_id])
{
! $result = $this->row[$query_id][$field];
}
}
--- 264,268 ----
else if($this->row[$query_id])
{
! $result = $this->rowset[$query_id][0][$field];
}
}
Index: mysql4.php
===================================================================
RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/db/mysql4.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** mysql4.php 29 Jul 2004 22:36:00 -0000 1.1
--- mysql4.php 31 Oct 2005 03:18:41 -0000 1.2
***************
*** 272,276 ****
if( $this->rowset[$query_id] )
{
! $result = $this->rowset[$query_id][$field];
}
else if( $this->row[$query_id] )
--- 272,276 ----
if( $this->rowset[$query_id] )
{
! $result = $this->rowset[$query_id][0][$field];
}
else if( $this->row[$query_id] )
Index: mysqli.php
===================================================================
RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/db/mysqli.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** mysqli.php 12 May 2005 02:56:08 -0000 1.7
--- mysqli.php 31 Oct 2005 03:18:41 -0000 1.8
***************
*** 281,285 ****
if( $this->rowset[$query_id] )
{
! $result = $this->rowset[$query_id][$field];
}
else if( $this->row[$query_id] )
--- 281,285 ----
if( $this->rowset[$query_id] )
{
! $result = $this->rowset[$query_id][0][$field];
}
else if( $this->row[$query_id] )
|