[phpMP-CVS] CVS: phpMP/includes core.php,1.39,1.40
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2002-12-05 00:35:00
|
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'] ); } |