[Phpbb-php5mod-cvs-checkins] phpbb-php5/db mysqli.php,1.4,1.5
Brought to you by:
jelly_doughnut
From: Josh <jel...@us...> - 2005-02-22 01:21:12
|
Update of /cvsroot/phpbb-php5mod/phpbb-php5/db In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14972/db Modified Files: mysqli.php Log Message: Updating to phpBB 2.0.12. Release within 24 hours hopefully :) Index: mysqli.php =================================================================== RCS file: /cvsroot/phpbb-php5mod/phpbb-php5/db/mysqli.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mysqli.php 19 Dec 2004 01:12:48 -0000 1.4 --- mysqli.php 22 Feb 2005 01:21:02 -0000 1.5 *************** *** 340,345 **** function sql_error() { ! $result['message'] = mysqli_error($this->db_connect_id); ! $result['code'] = mysqli_errno($this->db_connect_id); return $result; --- 340,345 ---- function sql_error() { ! $result['message'] = mysqli_error( (string) $this->db_connect_id); ! $result['code'] = mysqli_errno( (string) $this->db_connect_id); return $result; |