|
From: Jon O. <jon...@us...> - 2005-04-01 14:12:59
|
Update of /cvsroot/mxbb/kb_076_mxaddon/root In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12929/modules/kb_076_mxaddon/root Modified Files: kb.php Log Message: minor fixes...sprung from the phpbb dev thread Index: kb.php =================================================================== RCS file: /cvsroot/mxbb/kb_076_mxaddon/root/kb.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** kb.php 28 Mar 2005 20:54:54 -0000 1.2 --- kb.php 1 Apr 2005 14:12:29 -0000 1.3 *************** *** 19,29 **** * (at your option) any later version. */ define( 'MXBB_MODULE', false ); // Switch for making this run as a phpBB mod or mxBB module - - define( 'IN_PHPBB', true ); define( 'IN_PORTAL', true ); ! // when run as a phpBB mod these paths are identical $phpbb_root_path = $module_root_path = $mx_root_path = './'; --- 19,29 ---- * (at your option) any later version. */ + + // Main defs define( 'MXBB_MODULE', false ); // Switch for making this run as a phpBB mod or mxBB module define( 'IN_PHPBB', true ); define( 'IN_PORTAL', true ); ! // When run as a phpBB mod these paths are identical ;) $phpbb_root_path = $module_root_path = $mx_root_path = './'; *************** *** 31,35 **** include( $phpbb_root_path . 'common.' . $phpEx ); ! define( 'PAGE_KB', -500 ); // Start session management --- 31,35 ---- include( $phpbb_root_path . 'common.' . $phpEx ); ! define( 'PAGE_KB', -500 ); // If this id generates a conflict with other mods, change it ;) // Start session management |