|
From: FlorinCB <ory...@us...> - 2009-01-18 13:23:57
|
Update of /cvsroot/mxbb/phpbb2mxp In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv30628 Modified Files: common.php extension.inc faq.php groupcp.php index.php login.php memberlist.php modcp.php posting.php privmsg.php profile.php search.php viewforum.php viewonline.php viewtopic.php Log Message: upgrade phpEx definition, extension.inc is still required for other reasons Index: login.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/login.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** login.php 31 Dec 2008 01:43:48 -0000 1.1 --- login.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 29,33 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); --- 29,33 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); Index: extension.inc =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/extension.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** extension.inc 31 Dec 2008 01:43:48 -0000 1.1 --- extension.inc 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 18,21 **** --- 18,25 ---- // + //Do not delete this file, may be required for some old mods + // + + // // Change this if your extension is not .php! // Index: search.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/search.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** search.php 31 Dec 2008 01:43:48 -0000 1.1 --- search.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include_once($phpbb_root_path . 'extension.inc'); include_once($phpbb_root_path . 'common.'.$phpEx); include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include_once($phpbb_root_path . 'common.'.$phpEx); include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx); Index: index.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/index.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.php 31 Dec 2008 01:43:48 -0000 1.1 --- index.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); Index: viewonline.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/viewonline.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** viewonline.php 31 Dec 2008 01:43:48 -0000 1.1 --- viewonline.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); Index: viewtopic.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/viewtopic.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** viewtopic.php 31 Dec 2008 01:43:48 -0000 1.1 --- viewtopic.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include_once($phpbb_root_path . 'extension.inc'); include_once($phpbb_root_path . 'common.'.$phpEx); include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include_once($phpbb_root_path . 'common.'.$phpEx); include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx); Index: posting.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/posting.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** posting.php 31 Dec 2008 01:43:48 -0000 1.1 --- posting.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include_once($phpbb_root_path . 'extension.inc'); include_once($phpbb_root_path . 'common.'.$phpEx); include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include_once($phpbb_root_path . 'common.'.$phpEx); include_once($phpbb_root_path . 'includes/bbcode.'.$phpEx); Index: faq.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/faq.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** faq.php 31 Dec 2008 01:43:48 -0000 1.1 --- faq.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); Index: memberlist.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/memberlist.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** memberlist.php 31 Dec 2008 01:43:48 -0000 1.1 --- memberlist.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 22,26 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); --- 22,26 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); Index: groupcp.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/groupcp.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** groupcp.php 31 Dec 2008 01:43:48 -0000 1.1 --- groupcp.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); Index: viewforum.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/viewforum.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** viewforum.php 31 Dec 2008 01:43:48 -0000 1.1 --- viewforum.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); Index: profile.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/profile.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** profile.php 31 Dec 2008 01:43:48 -0000 1.1 --- profile.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include_once($phpbb_root_path . 'extension.inc'); include_once($phpbb_root_path . 'common.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include_once($phpbb_root_path . 'common.'.$phpEx); Index: privmsg.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/privmsg.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** privmsg.php 31 Dec 2008 01:43:48 -0000 1.1 --- privmsg.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 23,27 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); include($phpbb_root_path . 'includes/bbcode.'.$phpEx); --- 23,27 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); include($phpbb_root_path . 'includes/bbcode.'.$phpEx); Index: modcp.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/modcp.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** modcp.php 31 Dec 2008 01:43:48 -0000 1.1 --- modcp.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 31,35 **** define('IN_PHPBB', true); $phpbb_root_path = './'; ! include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); include($phpbb_root_path . 'includes/bbcode.'.$phpEx); --- 31,35 ---- define('IN_PHPBB', true); $phpbb_root_path = './'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.'.$phpEx); include($phpbb_root_path . 'includes/bbcode.'.$phpEx); Index: common.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/common.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** common.php 31 Dec 2008 01:43:48 -0000 1.1 --- common.php 18 Jan 2009 13:23:43 -0000 1.2 *************** *** 237,241 **** } ! //+mxbb_portal if( !defined('IN_ADMIN') ) { --- 237,244 ---- } ! /* ! +mxbb_portal ! /* ! if( !defined('IN_ADMIN') ) { *************** *** 247,251 **** } } - //-mxbb_portal ?> \ No newline at end of file --- 250,256 ---- } } + /* + -mxbb_portal + */ ?> \ No newline at end of file |