Update of /cvsroot/phpmp/phpMP/includes
In directory sc8-pr-cvs1:/tmp/cvs-serv16180/includes
Modified Files:
core.php
Log Message:
Forgot one small thing about that whole config value thing.
Index: core.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/includes/core.php,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -r1.39 -r1.40
*** core.php 5 Dec 2002 00:33:42 -0000 1.39
--- core.php 5 Dec 2002 00:34:56 -0000 1.40
***************
*** 25,29 ****
while( $row = $DB->fetchArray( $result ) )
{
! define( strtoupper( $row['config_key'] ), $row['config_value'] );
}
--- 25,29 ----
while( $row = $DB->fetchArray( $result ) )
{
! define( strtoupper( 'C_' . $row['config_key'] ), $row['config_value'] );
}
|