Update of /cvsroot/phpmp/phpMP/includes
In directory sc8-pr-cvs1:/tmp/cvs-serv11834
Modified Files:
core.php
Log Message:
Fixed a few small errors.
Index: core.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/includes/core.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** core.php 2 Dec 2002 10:59:50 -0000 1.32
--- core.php 2 Dec 2002 11:21:37 -0000 1.33
***************
*** 1,2 ****
--- 1,3 ----
+ B
<?
***************
*** 25,29 ****
while( $row = $DB->fetchArray( $result ) )
{
! define( strtoupper( $row['key'] ), $row['value'] );
}
--- 26,30 ----
while( $row = $DB->fetchArray( $result ) )
{
! define( strtoupper( $row['config_key'] ), $row['config_value'] );
}
***************
*** 38,42 ****
function init ( $optional_files = array() )
{
! include_once('./config.php');
//include_once(PHPMP_ROOT . 'includes/debug.php');
--- 39,43 ----
function init ( $optional_files = array() )
{
! include_once(PHPMP_ROOT . 'config.php');
//include_once(PHPMP_ROOT . 'includes/debug.php');
|