|
From: Florin C B. <ory...@us...> - 2013-06-17 16:06:46
|
Update of /cvsroot/mxbb/mx_linkdb/admin In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11532 Modified Files: admin_linkdb.php Log Message: Index: admin_linkdb.php =================================================================== RCS file: /cvsroot/mxbb/mx_linkdb/admin/admin_linkdb.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** admin_linkdb.php 3 Jun 2008 20:08:39 -0000 1.15 --- admin_linkdb.php 17 Jun 2013 16:06:43 -0000 1.16 *************** *** 9,30 **** */ - define( 'IN_PORTAL', true ); - $phpEx = substr(strrchr(__FILE__, '.'), 1); if ( @file_exists( './../viewtopic.'.$phpEx ) ) { ! define( 'IN_PHPBB', 1 ); ! define( 'MXBB_MODULE', false ); - // // Main paths - // $phpbb_root_path = $module_root_path = $mx_root_path = "./../"; $mx_mod_path = $phpbb_root_path . 'mx_mod/'; - // // Left Pane Paths - // $setmodules_admin_path = ''; $setmodules_module_path = "./../"; --- 9,25 ---- */ $phpEx = substr(strrchr(__FILE__, '.'), 1); if ( @file_exists( './../viewtopic.'.$phpEx ) ) { ! @define( 'IN_PHPBB', 1 ); ! @define( 'IN_PORTAL', 1 ); ! @define( 'MXBB_MODULE', false ); // Main paths $phpbb_root_path = $module_root_path = $mx_root_path = "./../"; $mx_mod_path = $phpbb_root_path . 'mx_mod/'; // Left Pane Paths $setmodules_admin_path = ''; $setmodules_module_path = "./../"; *************** *** 35,55 **** else { ! define( 'IN_PORTAL', 1 ); ! define( 'MXBB_MODULE', true ); - // // Main paths - // $mx_root_path = './../../../'; $module_root_path = './../../../modules/mx_linkdb/'; - // // Left Pane Paths - // $setmodules_root_path = './../'; $setmodules_module_path = 'modules/mx_linkdb/'; $setmodules_admin_path = $setmodules_module_path . 'admin/'; ! define( 'MXBB_27x', file_exists( $setmodules_root_path . 'mx_login.php' ) ); $phpEx = substr(strrchr(__FILE__, '.'), 1); --- 30,45 ---- else { ! @define( 'MXBB_MODULE', true ); // Main paths $mx_root_path = './../../../'; $module_root_path = './../../../modules/mx_linkdb/'; // Left Pane Paths $setmodules_root_path = './../'; $setmodules_module_path = 'modules/mx_linkdb/'; $setmodules_admin_path = $setmodules_module_path . 'admin/'; ! @define( 'MXBB_27x', file_exists( $setmodules_root_path . 'mx_login.php' ) ); $phpEx = substr(strrchr(__FILE__, '.'), 1); |