|
From: Jon O. <jon...@us...> - 2007-07-21 23:07:20
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25016 Modified Files: common.php index.php Log Message: Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** common.php 5 May 2007 20:12:57 -0000 1.64 --- common.php 21 Jul 2007 23:07:14 -0000 1.65 *************** *** 264,267 **** --- 264,277 ---- $mx_user = new mx_user(); + // + // instatiate the mx_page (CORE) class + // + $mx_page = new mx_page(); + + // + // instatiate the mx_block class + // + $mx_block = new mx_block(); + // Obtain and encode users IP // Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/index.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** index.php 10 Jun 2007 21:23:34 -0000 1.68 --- index.php 21 Jul 2007 23:07:14 -0000 1.69 *************** *** 31,39 **** // ! // Load and instatiate page and block classes // - $mx_page = new mx_page(); $mx_page->init( $page_id ); - $mx_block = new mx_block(); // --- 31,37 ---- // ! // Load and instatiate CORE (page) and block classes // $mx_page->init( $page_id ); // *************** *** 337,340 **** --- 335,339 ---- // $layouttemplate->pparse('mx_main_layout'); + // // Output footer |