[phpMP-CVS] CVS: phpMP config.php,1.3,1.4 index.php,1.44,1.45
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-06-29 05:53:27
|
Update of /cvsroot/phpmp/phpMP In directory sc8-pr-cvs1:/tmp/cvs-serv13269 Modified Files: config.php index.php Log Message: Hopefully this will fix a few problems. Index: config.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/config.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** config.php 2 May 2003 04:52:56 -0000 1.3 --- config.php 29 Jun 2003 05:53:24 -0000 1.4 *************** *** 0 **** --- 1,18 ---- + <?php + + ## DO NOT ALTER THIS FILE. + ## This file is automatically generated + ## by the phpMP install script. Do not + ## alter this file if you don't know + ## what you're doing. + + define( "PHPMP_INSTALLED", TRUE ); + + define( "DB_TYPE", "mysql" ); + define( "DB_HOST", "localhost" ); + define( "DB_NAME", "phpmp" ); + define( "DB_TABLE_PREFIX", "phpmp_" ); + define( "DB_USER", "root" ); + define( "DB_PASSWD", "fl1ntflar3" ); + + ?> \ No newline at end of file Index: index.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/index.php,v retrieving revision 1.44 retrieving revision 1.45 diff -C2 -r1.44 -r1.45 *** index.php 3 Jun 2003 06:48:20 -0000 1.44 --- index.php 29 Jun 2003 05:53:24 -0000 1.45 *************** *** 30,42 **** $Template->assign_vars( array( ! 'C_Site_Name' => $Config->get('site_name'), ! 'C_Site_Address' => $Config->get('site_domain') . $Config->get('rel_path'), ! 'C_Version' => $Config->get('version'), ! 'C_Rel_Path' => $Config->get('rel_path'), ! 'C_Site_Name' => $Config->get('site_name'), ! 'U_Template_Name' => $User->get('user_tpl'), ! 'U_Language' => $User->get('language'), ! 'U_Current_Time' => time(), ! 'U_Username' => $User->get('user_name') ) ); --- 30,39 ---- $Template->assign_vars( array( ! 'C_SITE_NAME' => $Config->get('site_name'), ! 'C_SITE_ADDRESS' => $Config->get('site_domain') . $Config->get('rel_path'), ! 'C_VERSION' => $Config->get('version'), ! 'C_REL_PATH' => $Config->get('rel_path'), ! 'C_TEMPLATE' => $Config->get('template'), ! 'U_USERNAME' => $User->get('user_name') ) ); |