|
From: Culprit <cul...@us...> - 2008-06-18 05:11:45
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2712/core/admin Modified Files: index_new.php Log Message: fixes Index: index_new.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/index_new.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** index_new.php 22 Feb 2008 23:02:49 -0000 1.10 --- index_new.php 18 Jun 2008 05:11:39 -0000 1.11 *************** *** 107,113 **** { include_once( $mx_root_path . 'includes/sessions/phpbb3/auth.' . $phpEx ); ! mx_page::load_file( 'acp/auth' ); // mx_page::load_file( 'auth'); ! mx_page::load_file( 'functions' ); // mx_page::load_file( 'functions', 'phpbb2' ); CULPRIT, You have to add this to the shared phpbb3 folder. mx_page::load_file( 'functions_module' ); --- 107,113 ---- { include_once( $mx_root_path . 'includes/sessions/phpbb3/auth.' . $phpEx ); ! mx_page::load_file( 'acp/auth', 'phpbb3' ); // mx_page::load_file( 'auth'); ! mx_page::load_file( 'functions', 'phpbb2' ); // mx_page::load_file( 'functions', 'phpbb2' ); CULPRIT, You have to add this to the shared phpbb3 folder. mx_page::load_file( 'functions_module' ); *************** *** 155,159 **** include_once( $mx_root_path . 'includes/shared/phpbb3/includes/functions_hook.' . $phpEx ); $this->phpbb3_hook = new mx_phpbb3_admin( $this ); ! $this->phpbb3_hook->hook( 'admin' ); } } --- 155,159 ---- include_once( $mx_root_path . 'includes/shared/phpbb3/includes/functions_hook.' . $phpEx ); $this->phpbb3_hook = new mx_phpbb3_admin( $this ); ! //$this->phpbb3_hook->hook( 'admin' ); } } |