[phpMP-CVS] CVS: phpMP/core/dba mysql.php,1.2,1.3
Status: Pre-Alpha
Brought to you by:
heimidal
From: Cameron C. <nor...@us...> - 2003-09-14 07:20:55
|
Update of /cvsroot/phpmp/phpMP/core/dba In directory sc8-pr-cvs1:/tmp/cvs-serv17872 Modified Files: mysql.php Log Message: changed sql_db::sql_db() a bit... removing something pointless. Index: mysql.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/core/dba/mysql.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** mysql.php 14 Sep 2003 07:14:47 -0000 1.2 --- mysql.php 14 Sep 2003 07:20:43 -0000 1.3 *************** *** 53,65 **** if(! $this->db_connection_id) { ! if(ERROR_REPORTING == FALSE) ! { ! return false; ! } ! else ! { ! // something like that :D ! die(mysql_error()); ! } } else --- 53,57 ---- if(! $this->db_connection_id) { ! return false; } else |