[phpMP-CVS] CVS: phpMP/includes mpcode.php,NONE,1.1 core.php,1.28,1.29 parser.php,1.6,NONE
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2002-11-30 23:18:42
|
Update of /cvsroot/phpmp/phpMP/includes In directory sc8-pr-cvs1:/tmp/cvs-serv24349 Modified Files: core.php Added Files: mpcode.php Removed Files: parser.php Log Message: paerser.php is now mpcode.php. core.php has been updated to fix a few mistakes I made. --- NEW FILE: mpcode.php --- <? // Content parsing functions to be developed here. // These work similarly to BBCode and the like. ?> Index: core.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/includes/core.php,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -r1.28 -r1.29 *** core.php 30 Nov 2002 05:55:04 -0000 1.28 --- core.php 30 Nov 2002 23:18:39 -0000 1.29 *************** *** 20,24 **** while( $row = $DB->fetch_array( $result ) ) { ! define( str_to_uppoer($row['key']), $row['value'] ); } --- 20,24 ---- while( $row = $DB->fetch_array( $result ) ) { ! define( str_to_upper( $row['key'] ), $row['value'] ); } *************** *** 51,55 **** include_once('./includes/functions.php'); ! include_once('./includes/parser.php'); // This while() statement will loop through the --- 51,55 ---- include_once('./includes/functions.php'); ! include_once('./includes/mpcode.php'); // This while() statement will loop through the --- parser.php DELETED --- |