Update of /cvsroot/phpmp/phpMP/core/dba
In directory sc8-pr-cvs1:/tmp/cvs-serv3465/core/dba
Modified Files:
mysql.php
Log Message:
A few bug fixes and resolved integration issues.
Index: mysql.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/core/dba/mysql.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** mysql.php 15 Sep 2003 03:13:52 -0000 1.6
--- mysql.php 15 Sep 2003 06:40:24 -0000 1.7
***************
*** 54,57 ****
--- 54,58 ----
{
return false;
+ if(DEBUG_ON) { echo "Could not connect to database.<br>\n"; }
}
else
***************
*** 66,69 ****
--- 67,71 ----
}
}
+ if(DEBUG_ON) { echo "Successfully connected to the DB.<br>\n"; }
return $this->db_connection_id;
}
|