[phpMP-CVS] CVS: phpMP/dba mysql.dba,1.22,1.23
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-05-02 04:54:04
|
Update of /cvsroot/phpmp/phpMP/dba In directory sc8-pr-cvs1:/tmp/cvs-serv10803/dba Modified Files: mysql.dba Log Message: Fixed a few things. Removed redudant lines in template.php (redundant if initialized by Core). Config.php should always remain empty in CVS. Started work on debug interface. Lastly, autologin will now work as I want it to. Index: mysql.dba =================================================================== RCS file: /cvsroot/phpmp/phpMP/dba/mysql.dba,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** mysql.dba 22 Apr 2003 10:50:51 -0000 1.22 --- mysql.dba 2 May 2003 04:52:56 -0000 1.23 *************** *** 6,9 **** --- 6,10 ---- var $ident_link; var $connected; + var $query_count; function connect () *************** *** 65,68 **** --- 66,70 ---- { $result = @mysql_query( $qry, $db ); + $this->query_count++; return $result; } |