[phpMP-CVS] CVS: phpMP index.php,1.30,1.31 modules.php,1.14,1.15 profile.php,1.7,1.8
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-02-08 09:43:32
|
Update of /cvsroot/phpmp/phpMP In directory sc8-pr-cvs1:/tmp/cvs-serv10648 Modified Files: index.php modules.php profile.php Log Message: Still correctly the problem with the linebreaks. :-\ Index: index.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/index.php,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** index.php 7 Feb 2003 23:28:48 -0000 1.30 --- index.php 8 Feb 2003 09:43:28 -0000 1.31 *************** *** 1 **** ! <html> <body> <?php define("C_PHPMP_ROOT", "./"); include_once( C_PHPMP_ROOT . 'includes/core.php' ); $Core = new Core(); $Core->init(); // For testing purposes, we will now print all of the constants we have declared. print "phpMP Version: " . C_VERSION . '<br>'; print "<br>"; print "Site Name: " . C_SITE_NAME . '<br>'; print "Site Address: " . C_SITE_ADDR . '<br>'; print "Relative Path: " . C_REL_PATH . '<br>'; print "Default Template: " . C_DEFAULT_TPL . '<br>'; print "Default Language: " . C_DEFAULT_LANG . '<br>'; print "The Current Date and Time: " . C_DATE_NOW . '<br>'; print "Current Logged User: " . U_USERNAME . '<br>'; print "<br>"; print "DB Type: " . DB_TYPE . '<br>'; print "DB Host: " . DB_HOST . '<br>'; print "DB Name: " . DB_NAME . '<br>'; print "DB User: " . DB_USER . '<br>'; print "DB Host: " . DB_TABLE_PREFIX . '<br>'; print "<br>"; print "Config Table: " . DB_CONFIG_TABLE . '<br>'; print "Users Table: " . DB_USERS_TABLE . '<br>'; print "Block Table: " . DB_BLOCK_TABLE . '<br>'; print "Modules Table: " . DB_MODULES_TABLE . '<br>'; print "Sessions Table: " . DB_SESSIONS_TABLE . '<br>'; ?> </body> </html> \ No newline at end of file --- 1,45 ---- ! <html> ! <body> ! ! <?php ! ! define("C_PHPMP_ROOT", "./"); ! include_once( C_PHPMP_ROOT . 'includes/core.php' ); ! $Core = new Core(); ! ! $Core->init(); ! ! // For testing purposes, we will now print all of the constants we have declared. ! ! print "phpMP Version: " . C_VERSION . '<br>'; ! ! print "<br>"; ! ! print "Site Name: " . C_SITE_NAME . '<br>'; ! print "Site Address: " . C_SITE_ADDR . '<br>'; ! print "Relative Path: " . C_REL_PATH . '<br>'; ! print "Default Template: " . C_DEFAULT_TPL . '<br>'; ! print "Default Language: " . C_DEFAULT_LANG . '<br>'; ! print "The Current Date and Time: " . C_DATE_NOW . '<br>'; ! print "Current Logged User: " . U_USERNAME . '<br>'; ! ! print "<br>"; ! ! print "DB Type: " . DB_TYPE . '<br>'; ! print "DB Host: " . DB_HOST . '<br>'; ! print "DB Name: " . DB_NAME . '<br>'; ! print "DB User: " . DB_USER . '<br>'; ! print "DB Host: " . DB_TABLE_PREFIX . '<br>'; ! ! print "<br>"; ! ! print "Config Table: " . DB_CONFIG_TABLE . '<br>'; ! print "Users Table: " . DB_USERS_TABLE . '<br>'; ! print "Block Table: " . DB_BLOCK_TABLE . '<br>'; ! print "Modules Table: " . DB_MODULES_TABLE . '<br>'; ! print "Sessions Table: " . DB_SESSIONS_TABLE . '<br>'; ! ! ?> ! ! </body> ! </html> \ No newline at end of file Index: modules.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/modules.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** modules.php 4 Feb 2003 21:43:07 -0000 1.14 --- modules.php 8 Feb 2003 09:43:29 -0000 1.15 *************** *** 1 **** ! <?php // Module handler. ?> \ No newline at end of file --- 1,5 ---- ! <?php ! ! // Module handler. ! ! ?> \ No newline at end of file Index: profile.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/profile.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** profile.php 4 Feb 2003 21:43:08 -0000 1.7 --- profile.php 8 Feb 2003 09:43:29 -0000 1.8 *************** *** 1 **** ! <?php // Profile handlers. // May be combined with other files, like auth.php or something. ?> \ No newline at end of file --- 1,6 ---- ! <?php ! ! // Profile handlers. ! // May be combined with other files, like auth.php or something. ! ! ?> \ No newline at end of file |