[phpMP-CVS] CVS: phpMP/dba mysql.dba,1.14,1.15
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2002-07-27 10:44:11
|
Update of /cvsroot/phpmp/phpMP/dba In directory usw-pr-cvs1:/tmp/cvs-serv26391/dba Modified Files: mysql.dba Log Message: Removed two error reports in the MySQL DBA that shouldn't have been there. Subsequently, this fixed the problem with the new session routines. Go figure. Index: mysql.dba =================================================================== RCS file: /cvsroot/phpmp/phpMP/dba/mysql.dba,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** mysql.dba 25 Jul 2002 06:16:22 -0000 1.14 --- mysql.dba 27 Jul 2002 10:44:08 -0000 1.15 *************** *** 106,110 **** else { // Execute query ! $result = @mysql_query($query, $db) or die("MySQL Error: ".@mysql_error($db)); // $result = mysql_query($query, $db); } --- 106,110 ---- else { // Execute query ! $result = @mysql_query($query, $db); // $result = mysql_query($query, $db); } *************** *** 125,129 **** else { // Execute query ! $result = @mysql_select_db($db_name, $db) or die("MySQL Error: ".@mysql_error($db)); } return $result; --- 125,129 ---- else { // Execute query ! $result = @mysql_select_db($db_name, $db); } return $result; |