[phpMP-CVS] CVS: phpMP index.php,1.23,1.24
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2002-12-02 10:59:53
|
Update of /cvsroot/phpmp/phpMP In directory sc8-pr-cvs1:/tmp/cvs-serv1956 Modified Files: index.php Log Message: Made use of files within hierarchy much easier. Separated User and Auth so we aren't forced into loading Auth. Started writing a basic auth system (though the parts written are contained in User). Index: index.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/index.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** index.php 1 Dec 2002 03:47:21 -0000 1.23 --- index.php 2 Dec 2002 10:59:50 -0000 1.24 *************** *** 4,8 **** <? ! include( './includes/core.php' ); $Core = new Core(); --- 4,9 ---- <? ! define("PHPMP_ROOT", "./"); ! include( PHPMP_ROOT . 'includes/core.php' ); $Core = new Core(); |