You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: OryNider <ory...@us...> - 2008-02-05 21:56:45
|
Update of /cvsroot/mxbb/mx_shoutbox/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6216 Modified Files: Tag: core28x admin_mx_shoutbox.php Log Message: include file removed for compatibility with php5 Index: admin_mx_shoutbox.php =================================================================== RCS file: /cvsroot/mxbb/mx_shoutbox/admin/admin_mx_shoutbox.php,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** admin_mx_shoutbox.php 21 Jun 2007 18:21:05 -0000 1.1 --- admin_mx_shoutbox.php 5 Feb 2008 21:56:41 -0000 1.1.2.1 *************** *** 10,27 **** // ------------------------------------------------------------- ! if( !empty($setmodules) ) { ! $module['Shoutbox']['Configuration'] = 'modules/mx_shoutbox/admin/' . @basename(__FILE__); return; } - - define('IN_PORTAL', true); $mx_root_path = '../../../'; $module_root_path = '../'; - require( $mx_root_path . 'admin/pagestart.php'); - include( $module_root_path . 'includes/constants.'.$phpEx ); ! include( $mx_root_path . 'admin/page_header_admin.'.$phpEx ); // --- 10,34 ---- // ------------------------------------------------------------- ! define('IN_PORTAL', true); ! ! if ( !empty( $setmodules ) ) { ! $file = @basename( __FILE__ ); ! $module['Shoutbox']['Configuration'] = 'modules/mx_shoutbox/admin/' . $file; return; } $mx_root_path = '../../../'; $module_root_path = '../'; ! // ! // Security and page header... ! // ! // ! $phpEx = substr(strrchr(__FILE__, '.'), 1); ! require($mx_root_path . '/admin/pagestart.'.$phpEx); ! ! include($module_root_path . 'includes/constants.'.$phpEx); ! //include($mx_root_path . 'admin/page_header_admin.'.$phpEx); // *************** *** 48,52 **** else { ! while( $row = $db->sql_fetchrow($result) ) { $config_name = $row['config_name']; --- 55,59 ---- else { ! while($row = $db->sql_fetchrow($result)) { $config_name = $row['config_name']; *************** *** 146,150 **** $template->pparse('admin_shoutbox'); ! include_once( $mx_root_path . 'admin/page_footer_admin.'.$phpEx); ?> --- 153,157 ---- $template->pparse('admin_shoutbox'); ! include_once($mx_root_path . 'admin/page_footer_admin.'.$phpEx); ?> |
|
From: OryNider <ory...@us...> - 2008-02-05 19:24:01
|
Update of /cvsroot/mxbb/mx_shoutbox In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv8594 Modified Files: Tag: core28x mx_shoutbox.php Log Message: Security fixes for mx_shotbox,Jon you can add this to head too. Index: mx_shoutbox.php =================================================================== RCS file: /cvsroot/mxbb/mx_shoutbox/mx_shoutbox.php,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** mx_shoutbox.php 21 Jun 2007 18:21:04 -0000 1.1 --- mx_shoutbox.php 5 Feb 2008 19:23:55 -0000 1.1.2.1 *************** *** 11,25 **** // ------------------------------------------------------------- ! if( !isset($HTTP_POST_VARS) ) ! { ! $HTTP_POST_VARS = &$_POST; ! $HTTP_GET_VARS = &$_GET; ! $HTTP_SESSION_VARS = &$_SESSION; ! $HTTP_SERVER_VARS = &$_SERVER; ! } ! ! if ($_GET[page]) { ! $page = "page=".$_GET[page]."&"; ! } if ( defined('IN_PORTAL') ) --- 11,15 ---- // ------------------------------------------------------------- ! $page_id = ($page_id) ? intval($page_id) : $mx_request_vars->request('page', MX_TYPE_NO_TAGS, 1); if ( defined('IN_PORTAL') ) *************** *** 63,88 **** } ! $page_limit = $shout_config['list_index']; /******************************* Get mode from passed arguments ********************************/ ! ! if( isset($HTTP_POST_VARS['sbmode']) || isset($HTTP_GET_VARS['sbmode']) ) ! { ! $mode = ( isset($HTTP_POST_VARS['sbmode']) ) ? $HTTP_POST_VARS['sbmode'] : $HTTP_GET_VARS['sbmode']; ! } ! else ! { ! $mode = ""; ! } switch ($mode) { case 'add': ! $username = ( !empty($HTTP_POST_VARS['username']) ) ? prepare_message(trim($HTTP_POST_VARS['username']), 0, 0, 0, 0) : $lang['guest']; ! $user_id = ( isset($HTTP_POST_VARS['user_id']) ) ? $HTTP_POST_VARS['user_id'] : $HTTP_GET_VARS['user_id']; ! $message = ( isset($HTTP_POST_VARS['message']) ) ? $HTTP_POST_VARS['message'] : $HTTP_GET_VARS['message']; ! $bbcode_on = ( isset($HTTP_POST_VARS['bbcode']) ) ? $HTTP_POST_VARS['bbcode'] : $HTTP_GET_VARS['bbcode']; $time = time(); $bbcode_uid = make_bbcode_uid(); --- 53,74 ---- } ! $page_id_limit = $shout_config['list_index']; /******************************* Get mode from passed arguments ********************************/ ! $mode = $mx_request_vars->request('sbmode', MX_TYPE_NO_TAGS, ''); switch ($mode) { case 'add': ! $username = ($user_data['user_id'] !== 1) ? prepare_message(trim($user_data['user_name']), 0, 0, 0, 0) : $lang['guest']; ! $user_id = $user_data['user_id']; ! $message = $mx_request_vars->request('message', MX_TYPE_NO_TAGS, ''); ! if (!($message)) ! { ! mx_message_die(GENERAL_MESSAGE, 'You most type a message'); ! } ! $bbcode_on = $mx_request_vars->request('bbcode', MX_TYPE_NO_TAGS, ''); $time = time(); $bbcode_uid = make_bbcode_uid(); *************** *** 104,108 **** case 'delete': ! $id = ( isset($HTTP_POST_VARS['id']) ) ? $HTTP_POST_VARS['id'] : $HTTP_GET_VARS['id']; if ( empty($id)) { --- 90,94 ---- case 'delete': ! $id = $mx_request_vars->request('id', MX_TYPE_INT, ''); if ( empty($id)) { *************** *** 122,126 **** case 'edit': ! $id = ( isset($HTTP_POST_VARS['id']) ) ? $HTTP_POST_VARS['id'] : $HTTP_GET_VARS['id']; if ( empty($id) ) { --- 108,112 ---- case 'edit': ! $id = $mx_request_vars->request('id', MX_TYPE_INT, ''); if ( empty($id) ) { *************** *** 160,169 **** $template->assign_vars(array( 'L_EDIT_SHOUT_INFO' => $lang['Edit_Shout_Info'], ! 'SHOUT_TEXT' => $thisshout['text'], 'BOX_HEIGHT' => $box_height, 'L_SUBMIT' => $lang['Submit'], 'SHOUT_SIZE' => $shout_config['shout_size'], 'SHOUT_SIZE_EXPL' => $lang['shout_size_expl'], ! 'S_SHOUT_ACTION' => append_sid("$_SERVER[PHP_SELF]?".$page."sbmode=edit_shout&id=$id"), ) ); --- 146,155 ---- $template->assign_vars(array( 'L_EDIT_SHOUT_INFO' => $lang['Edit_Shout_Info'], ! 'SHOUT_TEXT' => $shout_startthisshout['text'], 'BOX_HEIGHT' => $box_height, 'L_SUBMIT' => $lang['Submit'], 'SHOUT_SIZE' => $shout_config['shout_size'], 'SHOUT_SIZE_EXPL' => $lang['shout_size_expl'], ! 'S_SHOUT_ACTION' => append_sid($mx_root_path.'index.php?page='.$page_id."&sbmode=edit_shout&id=$id"), ) ); *************** *** 182,186 **** case 'edit_shout': ! $id = ( isset($HTTP_POST_VARS['id']) ) ? $HTTP_POST_VARS['id'] : $HTTP_GET_VARS['id']; if ( empty($id) ) { --- 168,172 ---- case 'edit_shout': ! $id = $mx_request_vars->request('id', MX_TYPE_INT, ''); if ( empty($id) ) { *************** *** 203,208 **** if ($userdata['user_level'] == ADMIN || $shoutnameid == $userdata['user_id']) { ! $shout_text = str_replace("\'", "''", htmlspecialchars(trim($HTTP_POST_VARS['shout_text']))); ! $id = intval($HTTP_GET_VARS['id']); $sql = "UPDATE ". SHOUTBOX_TABLE ." --- 189,195 ---- if ($userdata['user_level'] == ADMIN || $shoutnameid == $userdata['user_id']) { ! $shout_text = $mx_request_vars->request('shout_text', MX_TYPE_NO_TAGS, ''); ! $shout_text = str_replace("\'", "''", htmlspecialchars(trim($shout_text))); ! $id = $mx_request_vars->request('id', MX_TYPE_INT, ''); $sql = "UPDATE ". SHOUTBOX_TABLE ." *************** *** 235,239 **** ****************************/ ! $s_form_action = append_sid($_SERVER[PHP_SELF]."?".$page); $s_hidden_fields = '<input name="sid" type="hidden" value="' . $userdata['session_id'] . '" />' .'<input name="user_id" type="hidden" value="' . $userdata['user_id'] . '" />' --- 222,226 ---- ****************************/ ! $s_form_action = append_sid($mx_root_path.'index.php?page='.$page_id); $s_hidden_fields = '<input name="sid" type="hidden" value="' . $userdata['session_id'] . '" />' .'<input name="user_id" type="hidden" value="' . $userdata['user_id'] . '" />' *************** *** 249,260 **** Get variables for paginate *****************************/ ! if( isset($HTTP_POST_VARS['shout_start']) || isset($HTTP_GET_VARS['shout_start']) ) ! { ! $shout_start = ( isset($HTTP_POST_VARS['shout_start']) ) ? $HTTP_POST_VARS['shout_start'] : $HTTP_GET_VARS['shout_start']; ! } ! else ! { ! $shout_start = 0; ! } /**************************** --- 236,241 ---- Get variables for paginate *****************************/ ! $shout_start = $mx_request_vars->request('shout_start', MX_TYPE_NO_TAGS, 0); ! $shout_start = ($shout_start < 0) ? 0 : $shout_start; /**************************** *************** *** 268,277 **** } $count = $db->sql_fetchrow($result); ! if ($page_limit == 0) { ! $page_limit = $count['total']; } ! $pagination = ( !empty($shout_config) ) ? eregi_replace('&start', 'shout_start',generate_pagination($mx_root_path.'index.'.$phpEx.'?', $count['total'], $page_limit, $shout_start, FALSE)) : ""; if ($shout_config['static_box']==1) --- 249,258 ---- } $count = $db->sql_fetchrow($result); ! if ($page_id_limit == 0) { ! $page_id_limit = $count['total']; } ! $pagination = ( !empty($shout_config) ) ? eregi_replace('&start', 'shout_start',generate_pagination($mx_root_path.'index.'.$phpEx.'?', $count['total'], $page_id_limit, $shout_start, FALSE)) : ""; if ($shout_config['static_box']==1) *************** *** 327,331 **** FROM " . SHOUTBOX_TABLE . " ORDER BY id DESC ! LIMIT $shout_start,$page_limit"; if ( !($result = $db->sql_query($sql)) ) { --- 308,312 ---- FROM " . SHOUTBOX_TABLE . " ORDER BY id DESC ! LIMIT $shout_start,$page_id_limit"; if ( !($result = $db->sql_query($sql)) ) { *************** *** 371,378 **** if ( $userdata['session_logged_in'] ) { ! $delurl_tmp = append_sid("$_SERVER[PHP_SELF]?".$page."sbmode=delete&id=$shoutid&sid=" . $userdata['session_id']); $delimg_tmp = '<img src="' . $images['icon_delpost'] . '" align="right" border="0" alt="' . $lang['alt_delete'] . '" />'; ! $edturl_tmp = append_sid("$_SERVER[PHP_SELF]?".$page."sbmode=edit&id=$shoutid&sid=" . $userdata['session_id']); $edtimg_tmp = '<img src="' . $images['icon_edit'] . '" align="right" border="0" alt="' . $lang['alt_edit'] . '" />'; --- 352,359 ---- if ( $userdata['session_logged_in'] ) { ! $delurl_tmp = append_sid($mx_root_path.'index.php?page='.$page_id."&sbmode=delete&id=$shoutid&sid=" . $userdata['session_id']); $delimg_tmp = '<img src="' . $images['icon_delpost'] . '" align="right" border="0" alt="' . $lang['alt_delete'] . '" />'; ! $edturl_tmp = append_sid($mx_root_path.'index.php?page='.$page_id."&sbmode=edit&id=$shoutid&sid=" . $userdata['session_id']); $edtimg_tmp = '<img src="' . $images['icon_edit'] . '" align="right" border="0" alt="' . $lang['alt_edit'] . '" />'; |
|
From: MW <jo...@us...> - 2008-02-05 18:37:39
|
Update of /cvsroot/mxbb/core/modules/mx_rebuild_search_tables In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20849/modules/mx_rebuild_search_tables Modified Files: db_upgrade.php Log Message: yet a bunch of more updates of MX-Publisher references, the last of the easy ones. still 344 references till mxbb left in core code, but mostly vars, const and parameters. Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_rebuild_search_tables/db_upgrade.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** db_upgrade.php 5 Feb 2008 10:31:14 -0000 1.5 --- db_upgrade.php 5 Feb 2008 18:37:21 -0000 1.6 *************** *** 33,37 **** $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original phpBB <i>Rebuild Search Tables</i> by the phpBB Team :: Adapted for mxBB by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; $message = "<b>" . $lang['upgrading'] . "!</b><br/><br/>"; --- 33,37 ---- $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original phpBB <i>Rebuild Search Tables</i> by the phpBB Team :: Adapted for MX-Publisher by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; $message = "<b>" . $lang['upgrading'] . "!</b><br/><br/>"; |
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20849/install/schemas Modified Files: postgres_schema_install.sql mysql_41_schema_install.sql mysql_schema_install.sql mysql_schema_install_2.8.0.b3.sql Log Message: yet a bunch of more updates of MX-Publisher references, the last of the easy ones. still 344 references till mxbb left in core code, but mostly vars, const and parameters. Index: mysql_schema_install_2.8.0.b3.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install_2.8.0.b3.sql,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mysql_schema_install_2.8.0.b3.sql 4 Feb 2008 15:58:07 -0000 1.3 --- mysql_schema_install_2.8.0.b3.sql 5 Feb 2008 18:37:20 -0000 1.4 *************** *** 382,388 **** # Dumping data for table 'mx_table_module' # ! INSERT INTO mx_table_module VALUES("10", "Core Blocks", "modules/mx_coreblocks/", "MX-Publisher Core Blocks", "", "mxBB Core Module", "Original mxBB <i>Core Blocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">The mxBB Development Team</a>"); INSERT INTO mx_table_module VALUES("20", "Textblocks", "modules/mx_textblocks/", "MX-Publisher Textblocks", "", "mxBB Core Module", "Original mxBB <i>Textblocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); ! INSERT INTO mx_table_module VALUES("30", "phpBB2 Blocks", "modules/mx_phpbb2blocks/", "MX-Publisher phpBB2 blocks", "", "mxBB Core Module", "Original mxBB <i>phpBB2 Blocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\"> The mxBB Development Team</a>"); INSERT INTO mx_table_module VALUES("50", "Navigation Menu", "modules/mx_navmenu/", "MX-Publisher Site Navigation", "", "mxBB Core Module", "Original mxBB <i>Navigation Menu</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); --- 382,388 ---- # Dumping data for table 'mx_table_module' # ! INSERT INTO mx_table_module VALUES("10", "Core Blocks", "modules/mx_coreblocks/", "MX-Publisher Core Blocks", "", "mxBB Core Module", "Original mxBB <i>Core Blocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">The MX-Publisher Development Team</a>"); INSERT INTO mx_table_module VALUES("20", "Textblocks", "modules/mx_textblocks/", "MX-Publisher Textblocks", "", "mxBB Core Module", "Original mxBB <i>Textblocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); ! INSERT INTO mx_table_module VALUES("30", "phpBB2 Blocks", "modules/mx_phpbb2blocks/", "MX-Publisher phpBB2 blocks", "", "mxBB Core Module", "Original mxBB <i>phpBB2 Blocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\"> The MX-Publisher Development Team</a>"); INSERT INTO mx_table_module VALUES("50", "Navigation Menu", "modules/mx_navmenu/", "MX-Publisher Site Navigation", "", "mxBB Core Module", "Original mxBB <i>Navigation Menu</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); Index: postgres_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/postgres_schema_install.sql,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** postgres_schema_install.sql 4 Feb 2008 15:58:07 -0000 1.5 --- postgres_schema_install.sql 5 Feb 2008 18:37:20 -0000 1.6 *************** *** 147,151 **** INSERT INTO "mx_table_block_system_parameter" VALUES (27,73,'','',0); ! INSERT INTO "mx_table_block_system_parameter" VALUES (28,15,'[b:31f05e4fa3]MX-Publisher[/b:31f05e4fa3] is a fully modular portal and CMS for phpBB, featuring dynamic pages, blocks, themes, and more by means of a powerful yet flexible AdminCP. It works without touching phpBB by using integrated features and functions. MX-Publisher requires phpBB to run, and currently supports the mySQL and postgreSQL databases, with planned support for MS-SQL and other DBMSs. MX-Publisher is the classical phpBB portal add-on, improved and enhanced for every phpBB version released since 2001.\r\n\r\n[i:31f05e4fa3]Welcome, and thanks for using the mxBB-Portal![/i:31f05e4fa3] \r\n\r\n :lol:','31f05e4fa3',0); INSERT INTO "mx_table_block_system_parameter" VALUES (29,15,'On this page we [i:621ded23c6]demonstrate [/i:621ded23c6]a few basic portal blocks (not already present on this or other pages) - to get you started. Please, try out the top links.','621ded23c6',0); --- 147,151 ---- INSERT INTO "mx_table_block_system_parameter" VALUES (27,73,'','',0); ! INSERT INTO "mx_table_block_system_parameter" VALUES (28,15,'[b:31f05e4fa3]MX-Publisher[/b:31f05e4fa3] is a fully modular portal and CMS for phpBB, featuring dynamic pages, blocks, themes, and more by means of a powerful yet flexible AdminCP. It works without touching phpBB by using integrated features and functions. MX-Publisher requires phpBB to run, and currently supports the mySQL and postgreSQL databases, with planned support for MS-SQL and other DBMSs. MX-Publisher is the classical phpBB portal add-on, improved and enhanced for every phpBB version released since 2001.\r\n\r\n[i:31f05e4fa3]Welcome, and thanks for using MX-Publisher![/i:31f05e4fa3] \r\n\r\n :lol:','31f05e4fa3',0); INSERT INTO "mx_table_block_system_parameter" VALUES (29,15,'On this page we [i:621ded23c6]demonstrate [/i:621ded23c6]a few basic portal blocks (not already present on this or other pages) - to get you started. Please, try out the top links.','621ded23c6',0); *************** *** 391,397 **** -- Dumping data for table 'mx_table_module' -- ! INSERT INTO "mx_table_module" VALUES (10,'Core Blocks','modules/mx_coreblocks/','MX-Publisher Core Blocks','','mxBB Core Module','Original mxBB <i>Core Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">The mxBB Development Team</a>'); INSERT INTO "mx_table_module" VALUES (20,'Textblocks','modules/mx_textblocks/','MX-Publisher Textblocks','','mxBB Core Module','Original mxBB <i>Textblocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'); ! INSERT INTO "mx_table_module" VALUES (30,'phpBB2 Blocks','modules/mx_phpbb2blocks/','MX-Publisher phpBB2 blocks','','mxBB Core Module','Original mxBB <i>phpBB2 Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank"> The mxBB Development Team</a>'); INSERT INTO "mx_table_module" VALUES (50,'Navigation Menu','modules/mx_navmenu/','MX-Publisher Site Navigation','','mxBB Core Module','Original mxBB <i>Navigation Menu</i> module by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'); --- 391,397 ---- -- Dumping data for table 'mx_table_module' -- ! INSERT INTO "mx_table_module" VALUES (10,'Core Blocks','modules/mx_coreblocks/','MX-Publisher Core Blocks','','mxBB Core Module','Original mxBB <i>Core Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'); INSERT INTO "mx_table_module" VALUES (20,'Textblocks','modules/mx_textblocks/','MX-Publisher Textblocks','','mxBB Core Module','Original mxBB <i>Textblocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'); ! INSERT INTO "mx_table_module" VALUES (30,'phpBB2 Blocks','modules/mx_phpbb2blocks/','MX-Publisher phpBB2 blocks','','mxBB Core Module','Original mxBB <i>phpBB2 Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank"> The MX-Publisher Development Team</a>'); INSERT INTO "mx_table_module" VALUES (50,'Navigation Menu','modules/mx_navmenu/','MX-Publisher Site Navigation','','mxBB Core Module','Original mxBB <i>Navigation Menu</i> module by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'); *************** *** 583,587 **** -- ! -- INSERT INTO "mx_table_portal" VALUES (1,'MX-Publisher','http://yoursite.com/forum/','http://yoursite.com/','2.8.0',-1,-1,1,'overall_header.tpl','overall_footer.tpl','mx_main_layout.tpl',0,0,1,'1182515561',0,'phpBB2','1','We are currently upgrading this site with latest mxBB software.'); -- --- 583,587 ---- -- ! -- INSERT INTO "mx_table_portal" VALUES (1,'MX-Publisher','http://yoursite.com/forum/','http://yoursite.com/','2.8.0',-1,-1,1,'overall_header.tpl','overall_footer.tpl','mx_main_layout.tpl',0,0,1,'1182515561',0,'phpBB2','1','We are currently upgrading this site with latest MX-Publisher software.'); -- Index: mysql_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install.sql,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** mysql_schema_install.sql 4 Feb 2008 15:58:07 -0000 1.50 --- mysql_schema_install.sql 5 Feb 2008 18:37:20 -0000 1.51 *************** *** 147,151 **** INSERT INTO mx_table_block_system_parameter VALUES("27", "73", "", "", "0"); ! INSERT INTO mx_table_block_system_parameter VALUES("28", "15", "[b:31f05e4fa3]MX-Publisher[/b:31f05e4fa3] is a fully modular portal and CMS for phpBB, featuring dynamic pages, blocks, themes, and more by means of a powerful yet flexible AdminCP. It works without touching phpBB by using integrated features and functions. MX-Publisher requires phpBB to run, and currently supports the mySQL and postgreSQL databases, with planned support for MS-SQL and other DBMSs. MX-Publisher is the classical phpBB portal add-on, improved and enhanced for every phpBB version released since 2001.\r\n\r\n[i:31f05e4fa3]Welcome, and thanks for using the mxBB-Portal![/i:31f05e4fa3] \r\n\r\n :lol:", "31f05e4fa3", "0"); INSERT INTO mx_table_block_system_parameter VALUES("29", "15", "On this page we [i:621ded23c6]demonstrate [/i:621ded23c6]a few basic portal blocks (not already present on this or other pages) - to get you started. Please, try out the top links.", "621ded23c6", "0"); --- 147,151 ---- INSERT INTO mx_table_block_system_parameter VALUES("27", "73", "", "", "0"); ! INSERT INTO mx_table_block_system_parameter VALUES("28", "15", "[b:31f05e4fa3]MX-Publisher[/b:31f05e4fa3] is a fully modular portal and CMS for phpBB, featuring dynamic pages, blocks, themes, and more by means of a powerful yet flexible AdminCP. It works without touching phpBB by using integrated features and functions. MX-Publisher requires phpBB to run, and currently supports the mySQL and postgreSQL databases, with planned support for MS-SQL and other DBMSs. MX-Publisher is the classical phpBB portal add-on, improved and enhanced for every phpBB version released since 2001.\r\n\r\n[i:31f05e4fa3]Welcome, and thanks for using MX-Publisher![/i:31f05e4fa3] \r\n\r\n :lol:", "31f05e4fa3", "0"); INSERT INTO mx_table_block_system_parameter VALUES("29", "15", "On this page we [i:621ded23c6]demonstrate [/i:621ded23c6]a few basic portal blocks (not already present on this or other pages) - to get you started. Please, try out the top links.", "621ded23c6", "0"); *************** *** 405,412 **** #INSERT INTO `mx_table_module` (`module_id`, `module_name`, `module_path`, `module_desc`, `module_include_admin`, `module_version`, `module_copy`) VALUES (50, 'Navigation Menu', 'modules/mx_navmenu/', 'MX-Publisher Site Navigation', '', 'mxBB Core Module', 'Original mxBB <i>Navigation Menu</i> module by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'); ! INSERT INTO mx_table_module VALUES("10", "Core Blocks", "modules/mx_coreblocks/", "MX-Publisher Core Blocks", "", "mxBB Core Module", "Original mxBB <i>Core Blocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">The mxBB Development Team</a>"); INSERT INTO mx_table_module VALUES("20", "Textblocks", "modules/mx_textblocks/", "MX-Publisher Textblocks", "", "mxBB Core Module", "Original mxBB <i>Textblocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); ! INSERT INTO mx_table_module VALUES("30", "phpBB2 Blocks", "modules/mx_phpbb2blocks/", "MX-Publisher phpBB2 blocks", "", "mxBB Core Module", "Original mxBB <i>phpBB2 Blocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\"> The mxBB Development Team</a>"); ! INSERT INTO mx_table_module VALUES("40", "Users and Groups", "modules/mx_users/", "Users and Group adminCP", "1", "mxBB Core Module", "Based on original phpBB <i>Admin Tool MODs</i> by Adam Alkins, Omar Ramadan & wGEric :: Adapted for mxBB by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); INSERT INTO mx_table_module VALUES("50", "Navigation Menu", "modules/mx_navmenu/", "MX-Publisher Site Navigation", "", "mxBB Core Module", "Original mxBB <i>Navigation Menu</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); --- 405,412 ---- #INSERT INTO `mx_table_module` (`module_id`, `module_name`, `module_path`, `module_desc`, `module_include_admin`, `module_version`, `module_copy`) VALUES (50, 'Navigation Menu', 'modules/mx_navmenu/', 'MX-Publisher Site Navigation', '', 'mxBB Core Module', 'Original mxBB <i>Navigation Menu</i> module by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'); ! INSERT INTO mx_table_module VALUES("10", "Core Blocks", "modules/mx_coreblocks/", "MX-Publisher Core Blocks", "", "mxBB Core Module", "Original mxBB <i>Core Blocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">The MX-Publisher Development Team</a>"); INSERT INTO mx_table_module VALUES("20", "Textblocks", "modules/mx_textblocks/", "MX-Publisher Textblocks", "", "mxBB Core Module", "Original mxBB <i>Textblocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); ! INSERT INTO mx_table_module VALUES("30", "phpBB2 Blocks", "modules/mx_phpbb2blocks/", "MX-Publisher phpBB2 blocks", "", "mxBB Core Module", "Original mxBB <i>phpBB2 Blocks</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\"> The MX-Publisher Development Team</a>"); ! INSERT INTO mx_table_module VALUES("40", "Users and Groups", "modules/mx_users/", "Users and Group adminCP", "1", "mxBB Core Module", "Based on original phpBB <i>Admin Tool MODs</i> by Adam Alkins, Omar Ramadan & wGEric :: Adapted for MX-Publisher by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); INSERT INTO mx_table_module VALUES("50", "Navigation Menu", "modules/mx_navmenu/", "MX-Publisher Site Navigation", "", "mxBB Core Module", "Original mxBB <i>Navigation Menu</i> module by <a href=\"http://www.mx-publisher.com\" target=\"_blank\">Jon</a>"); *************** *** 576,580 **** `portal_desc` varchar(255) NOT NULL default 'A _little_ text to describe your site', `portal_status` smallint(2) unsigned NOT NULL default '1', ! `disabled_message` varchar(255) NOT NULL default 'We are currently upgrading this site with latest mxBB software.', `server_name` varchar(255) NOT NULL default 'www.myserver.tld', `script_path` varchar(255) NOT NULL default '/', --- 576,580 ---- `portal_desc` varchar(255) NOT NULL default 'A _little_ text to describe your site', `portal_status` smallint(2) unsigned NOT NULL default '1', ! `disabled_message` varchar(255) NOT NULL default 'We are currently upgrading this site with latest MX-Publisher software.', `server_name` varchar(255) NOT NULL default 'www.myserver.tld', `script_path` varchar(255) NOT NULL default '/', *************** *** 613,617 **** `board_email` varchar(255) NOT NULL default 'you...@yo...', ! `board_email_sig` varchar(255) NOT NULL default 'Thanks, the mxBB Team', `smtp_delivery` smallint(2) unsigned NOT NULL default '0', `smtp_host` varchar(255) NOT NULL default '', --- 613,617 ---- `board_email` varchar(255) NOT NULL default 'you...@yo...', ! `board_email_sig` varchar(255) NOT NULL default 'Thanks, the MX-Publisher Team', `smtp_delivery` smallint(2) unsigned NOT NULL default '0', `smtp_host` varchar(255) NOT NULL default '', Index: mysql_41_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_41_schema_install.sql,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mysql_41_schema_install.sql 5 Feb 2008 14:25:25 -0000 1.1 --- mysql_41_schema_install.sql 5 Feb 2008 18:37:20 -0000 1.2 *************** *** 576,580 **** `portal_desc` varchar(255) NOT NULL default 'A _little_ text to describe your site', `portal_status` smallint(2) unsigned NOT NULL default '1', ! `disabled_message` varchar(255) NOT NULL default 'We are currently upgrading this site with latest mxBB software.', `server_name` varchar(255) NOT NULL default 'www.myserver.tld', `script_path` varchar(255) NOT NULL default '/', --- 576,580 ---- `portal_desc` varchar(255) NOT NULL default 'A _little_ text to describe your site', `portal_status` smallint(2) unsigned NOT NULL default '1', ! `disabled_message` varchar(255) NOT NULL default 'We are currently upgrading this site with latest MX-Publisher software.', `server_name` varchar(255) NOT NULL default 'www.myserver.tld', `script_path` varchar(255) NOT NULL default '/', *************** *** 613,617 **** `board_email` varchar(255) NOT NULL default 'you...@yo...', ! `board_email_sig` varchar(255) NOT NULL default 'Thanks, the mxBB Team', `smtp_delivery` smallint(2) unsigned NOT NULL default '0', `smtp_host` varchar(255) NOT NULL default '', --- 613,617 ---- `board_email` varchar(255) NOT NULL default 'you...@yo...', ! `board_email_sig` varchar(255) NOT NULL default 'Thanks, the MX-Publisher Team', `smtp_delivery` smallint(2) unsigned NOT NULL default '0', `smtp_host` varchar(255) NOT NULL default '', |
|
From: MW <jo...@us...> - 2008-02-05 18:37:39
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20849/modules/mx_coreblocks Modified Files: db_install.php db_upgrade.php Log Message: yet a bunch of more updates of MX-Publisher references, the last of the easy ones. still 344 references till mxbb left in core code, but mostly vars, const and parameters. Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/db_install.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** db_install.php 5 Feb 2008 10:31:14 -0000 1.8 --- db_install.php 5 Feb 2008 18:37:20 -0000 1.9 *************** *** 33,37 **** $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original mxBB <i>Core Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">The mxBB Development Team</a>'; $message = "<b>" . $lang['fresh_install'] . "!</b><br/><br/>"; --- 33,37 ---- $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original mxBB <i>Core Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; $message = "<b>" . $lang['fresh_install'] . "!</b><br/><br/>"; Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/db_upgrade.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** db_upgrade.php 5 Feb 2008 10:31:15 -0000 1.9 --- db_upgrade.php 5 Feb 2008 18:37:20 -0000 1.10 *************** *** 33,37 **** $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original mxBB <i>Core Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">The mxBB Development Team</a>'; $message = "<b>" . $lang['upgrading'] . "!</b><br/><br/>"; --- 33,37 ---- $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original mxBB <i>Core Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; $message = "<b>" . $lang['upgrading'] . "!</b><br/><br/>"; |
|
From: MW <jo...@us...> - 2008-02-05 18:37:39
|
Update of /cvsroot/mxbb/core/modules/mx_news In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20849/modules/mx_news Modified Files: db_upgrade.php Log Message: yet a bunch of more updates of MX-Publisher references, the last of the easy ones. still 344 references till mxbb left in core code, but mostly vars, const and parameters. Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_news/db_upgrade.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** db_upgrade.php 5 Feb 2008 10:31:13 -0000 1.5 --- db_upgrade.php 5 Feb 2008 18:37:20 -0000 1.6 *************** *** 31,35 **** $mx_module_version = '1.0.0'; ! $mx_module_copy = 'Created for mxBB by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; // For compatibility with core 2.7.+ --- 31,35 ---- $mx_module_version = '1.0.0'; ! $mx_module_copy = 'Created for MX-Publisher by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; // For compatibility with core 2.7.+ |
|
From: MW <jo...@us...> - 2008-02-05 18:37:33
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20849/includes Modified Files: mx_functions.php mx_functions_style.php mx_functions_blockcp.php Log Message: yet a bunch of more updates of MX-Publisher references, the last of the easy ones. still 344 references till mxbb left in core code, but mostly vars, const and parameters. Index: mx_functions_blockcp.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_blockcp.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** mx_functions_blockcp.php 4 Feb 2008 15:56:43 -0000 1.21 --- mx_functions_blockcp.php 5 Feb 2008 18:37:20 -0000 1.22 *************** *** 26,30 **** * * The mx_blockcp class provides a Block Control Panel, extending the mx_block class. ! * This class will load additional module specific parameters, eg advanced textblocks (bbcode/html/mxBB/wysiwyg) and serialized data types. * This class is instantiated in admin_mx_block_cp.php (adminCP mode) or in coreblocks/blockcp.php (user mode) * --- 26,30 ---- * * The mx_blockcp class provides a Block Control Panel, extending the mx_block class. ! * This class will load additional module specific parameters, eg advanced textblocks (bbcode/html/mxp/wysiwyg) and serialized data types. * This class is instantiated in admin_mx_block_cp.php (adminCP mode) or in coreblocks/blockcp.php (user mode) * Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** mx_functions_style.php 5 Feb 2008 14:51:27 -0000 1.38 --- mx_functions_style.php 5 Feb 2008 18:37:20 -0000 1.39 *************** *** 594,598 **** // ! // Now, $this->lang['default_lang'] is populated. But do we have a mathing mxBB lang file? // Note: $this->get_old_lang() is used to translate phpBB3 lang keys/paths to old ways, eg to ensure lang_english and not lang_en. // --- 594,598 ---- // ! // Now, $this->lang['default_lang'] is populated. But do we have a mathing MX-Publisher lang file? // Note: $this->get_old_lang() is used to translate phpBB3 lang keys/paths to old ways, eg to ensure lang_english and not lang_en. // Index: mx_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions.php,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** mx_functions.php 5 Feb 2008 14:51:27 -0000 1.75 --- mx_functions.php 5 Feb 2008 18:37:20 -0000 1.76 *************** *** 1165,1169 **** * Get langcode. * ! * This function loops all meta langcodes, to convert internal mxBB lang to standard langcode * */ --- 1165,1169 ---- * Get langcode. * ! * This function loops all meta langcodes, to convert internal MX-Publisher lang to standard langcode * */ |
|
From: MW <jo...@us...> - 2008-02-05 18:37:33
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20849/includes/sessions/phpbb2 Modified Files: auth.php session.php Log Message: yet a bunch of more updates of MX-Publisher references, the last of the easy ones. still 344 references till mxbb left in core code, but mostly vars, const and parameters. Index: auth.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb2/auth.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** auth.php 4 Feb 2008 15:56:44 -0000 1.2 --- auth.php 5 Feb 2008 18:37:20 -0000 1.3 *************** *** 18,22 **** /** * Permission/Auth class for phpBB2 forums ! * @package mxBB3 */ class phpbb_auth_base --- 18,22 ---- /** * Permission/Auth class for phpBB2 forums ! * @package MX-Publisher */ class phpbb_auth_base Index: session.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb2/session.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** session.php 9 Sep 2007 16:51:31 -0000 1.1 --- session.php 5 Feb 2008 18:37:20 -0000 1.2 *************** *** 30,34 **** /** * Session class ! * @package mxBB3 */ class session --- 30,34 ---- /** * Session class ! * @package MX-Publisher */ class session |
|
From: MW <jo...@us...> - 2008-02-05 18:37:33
|
Update of /cvsroot/mxbb/core/modules/mx_navmenu/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20849/modules/mx_navmenu/language/lang_english Modified Files: lang_admin.php Log Message: yet a bunch of more updates of MX-Publisher references, the last of the easy ones. still 344 references till mxbb left in core code, but mostly vars, const and parameters. Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_navmenu/language/lang_english/lang_admin.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** lang_admin.php 4 Feb 2008 16:52:02 -0000 1.9 --- lang_admin.php 5 Feb 2008 18:37:20 -0000 1.10 *************** *** 37,41 **** $lang['Menu_page'] = 'Menu Page (default/standard) <br />- link to internal portal page<br />NOTE: Pages are created using Page Administration.'; $lang['Menu_block'] = 'Dynamic Block<br />- need a dynamic block on the Page to handle the setting'; ! $lang['Menu_function'] = 'Menu Function (dev only)<br />- link to mxBB specific function (not available)'; $lang['Menu_action_title'] = '<b>Menu Action:</b> <br /><i>(Chose one of the 4 options below.)</i> '; $lang['Menu_action_adv'] = '<b>Advanced Menu Actions:</b> <br /><i>(Use carefully - intended for developers only):</i>'; --- 37,41 ---- $lang['Menu_page'] = 'Menu Page (default/standard) <br />- link to internal portal page<br />NOTE: Pages are created using Page Administration.'; $lang['Menu_block'] = 'Dynamic Block<br />- need a dynamic block on the Page to handle the setting'; ! $lang['Menu_function'] = 'Menu Function (dev only)<br />- link to MX-Publisher specific function (not available)'; $lang['Menu_action_title'] = '<b>Menu Action:</b> <br /><i>(Chose one of the 4 options below.)</i> '; $lang['Menu_action_adv'] = '<b>Advanced Menu Actions:</b> <br /><i>(Use carefully - intended for developers only):</i>'; |
|
From: MW <jo...@us...> - 2008-02-05 18:37:33
|
Update of /cvsroot/mxbb/core/includes/sessions/internal In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20849/includes/sessions/internal Modified Files: session.php Log Message: yet a bunch of more updates of MX-Publisher references, the last of the easy ones. still 344 references till mxbb left in core code, but mostly vars, const and parameters. Index: session.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/internal/session.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** session.php 18 Jan 2008 10:37:45 -0000 1.3 --- session.php 5 Feb 2008 18:37:20 -0000 1.4 *************** *** 30,34 **** /** * Session class ! * @package mxBB3 */ class session --- 30,34 ---- /** * Session class ! * @package MX-Publisher */ class session |
|
From: MW <jo...@us...> - 2008-02-05 18:37:33
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb3 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20849/includes/sessions/phpbb3 Modified Files: auth.php session.php Log Message: yet a bunch of more updates of MX-Publisher references, the last of the easy ones. still 344 references till mxbb left in core code, but mostly vars, const and parameters. Index: auth.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb3/auth.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** auth.php 4 Feb 2008 15:56:44 -0000 1.3 --- auth.php 5 Feb 2008 18:37:21 -0000 1.4 *************** *** 18,22 **** /** * Permission/Auth class for phpBB3 forums ! * @package mxBB3 */ class phpbb_auth_base --- 18,22 ---- /** * Permission/Auth class for phpBB3 forums ! * @package MX-Publisher */ class phpbb_auth_base Index: session.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb3/session.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** session.php 4 Feb 2008 15:56:44 -0000 1.9 --- session.php 5 Feb 2008 18:37:21 -0000 1.10 *************** *** 25,29 **** /** * Session class ! * @package mxBB3 */ class session --- 25,29 ---- /** * Session class ! * @package MX-Publisher */ class session |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:52:00
|
Update of /cvsroot/mxbb/core/templates/subSilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/templates/subSilver/admin Modified Files: page_footer.tpl Log Message: yet a bunch of more updates of MX-Publisher referenses Index: page_footer.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/admin/page_footer.tpl,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** page_footer.tpl 4 Feb 2008 16:01:41 -0000 1.13 --- page_footer.tpl 5 Feb 2008 14:51:26 -0000 1.14 *************** *** 12,16 **** LICENCE and README files for more information. ! The phpBB Group : 2001 & mxBB Team : 2002 //--> --- 12,16 ---- LICENCE and README files for more information. ! The phpBB Group : 2001 & MX-Publisher Team : 2002 //--> |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:52:00
|
Update of /cvsroot/mxbb/core/templates/mxSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/templates/mxSilver Modified Files: overall_header_navigation_phpbb.tpl overall_noheader.tpl Log Message: yet a bunch of more updates of MX-Publisher referenses Index: overall_noheader.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/mxSilver/overall_noheader.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** overall_noheader.tpl 9 Sep 2007 16:50:46 -0000 1.1 --- overall_noheader.tpl 5 Feb 2008 14:51:27 -0000 1.2 *************** *** 10,14 **** <!-- First load standard template *.css definition, located in the the phpbb template folder --> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_PHPBB_STYLESHEET}" type="text/css" > ! <!-- Then load mxBB template *.css definition for mx, located in the the portal template folder --> <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_MXBB_STYLESHEET}" type="text/css" > <!-- Optionally, redefine some defintions for gecko browsers --> --- 10,14 ---- <!-- First load standard template *.css definition, located in the the phpbb template folder --> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_PHPBB_STYLESHEET}" type="text/css" > ! <!-- Then load MX-Publisher template *.css definition for mx, located in the the portal template folder --> <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_MXBB_STYLESHEET}" type="text/css" > <!-- Optionally, redefine some defintions for gecko browsers --> Index: overall_header_navigation_phpbb.tpl =================================================================== RCS file: /cvsroot/mxbb/core/templates/mxSilver/overall_header_navigation_phpbb.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** overall_header_navigation_phpbb.tpl 4 Feb 2008 16:00:30 -0000 1.2 --- overall_header_navigation_phpbb.tpl 5 Feb 2008 14:51:27 -0000 1.3 *************** *** 12,16 **** <!-- First load standard template *.css definition, located in the the phpbb template folder --> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_PHPBB_STYLESHEET}" type="text/css" > ! <!-- Then load mxBB template *.css definition for mx, located in the the portal template folder --> <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_MXBB_STYLESHEET}" type="text/css" > <!-- Optionally, redefine some defintions for gecko browsers --> --- 12,16 ---- <!-- First load standard template *.css definition, located in the the phpbb template folder --> <link rel="stylesheet" href="{U_PHPBB_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_PHPBB_STYLESHEET}" type="text/css" > ! <!-- Then load MX-Publisher template *.css definition for mx, located in the the portal template folder --> <link rel="stylesheet" href="{U_PORTAL_ROOT_PATH}{TEMPLATE_ROOT_PATH}{T_MXBB_STYLESHEET}" type="text/css" > <!-- Optionally, redefine some defintions for gecko browsers --> |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:52:00
|
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/templates/subSilver Modified Files: subSilver.cfg Log Message: yet a bunch of more updates of MX-Publisher referenses Index: subSilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/subSilver.cfg,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** subSilver.cfg 4 Feb 2008 16:01:41 -0000 1.9 --- subSilver.cfg 5 Feb 2008 14:51:27 -0000 1.10 *************** *** 74,78 **** $current_template_block_images = PORTAL_URL . $mx_images['mx_graphics']['block_icons']; // Used by userCP block buttons $current_template_menu_images = PORTAL_URL . $mx_images['mx_graphics']['menu_icons']; // Used by adminCP - Navigation Menu ! $current_template_admin_images = PORTAL_URL . $mx_images['mx_graphics']['admin_icons']; // Internal graphics for the mxBB adminCP $current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template --- 74,78 ---- $current_template_block_images = PORTAL_URL . $mx_images['mx_graphics']['block_icons']; // Used by userCP block buttons $current_template_menu_images = PORTAL_URL . $mx_images['mx_graphics']['menu_icons']; // Used by adminCP - Navigation Menu ! $current_template_admin_images = PORTAL_URL . $mx_images['mx_graphics']['admin_icons']; // Internal graphics for the MX-Publisher adminCP $current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:52:00
|
Update of /cvsroot/mxbb/core/modules/mx_phpbb3blocks In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/modules/mx_phpbb3blocks Modified Files: db_install.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_phpbb3blocks/db_install.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** db_install.php 5 Feb 2008 10:31:13 -0000 1.6 --- db_install.php 5 Feb 2008 14:51:27 -0000 1.7 *************** *** 33,37 **** $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original mxBB <i>phpBB3Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank"> OryNider</a>'; $message = "<b>" . $lang['fresh_install'] . "!</b><br/><br/>"; --- 33,37 ---- $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original MX-Publisher <i>phpBB3Blocks</i> module by <a href="http://www.mx-publisher.com" target="_blank"> OryNider</a>'; $message = "<b>" . $lang['fresh_install'] . "!</b><br/><br/>"; |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:39
|
Update of /cvsroot/mxbb/core/modules/mx_phpbb2blocks/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/modules/mx_phpbb2blocks/includes Modified Files: phpbb2blocks_constants.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: phpbb2blocks_constants.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_phpbb2blocks/includes/phpbb2blocks_constants.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** phpbb2blocks_constants.php 4 Feb 2008 16:53:22 -0000 1.4 --- phpbb2blocks_constants.php 5 Feb 2008 14:51:28 -0000 1.5 *************** *** 12,16 **** if ( PORTAL_BACKEND != 'phpbb2' ) { ! mx_message_die(GENERAL_MESSAGE, 'There are blocks on this page designed for mxBB with phpBB2 backend, thus not compatible with current setup.'); } --- 12,16 ---- if ( PORTAL_BACKEND != 'phpbb2' ) { ! mx_message_die(GENERAL_MESSAGE, 'There are blocks on this page designed for MX-Publisher with phpBB2 backend, thus not compatible with current setup.'); } |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:37
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/includes Modified Files: mx_functions_style.php mx_functions_core.php mx_constants.php mx_functions.php mx_functions_admincp.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** mx_functions_core.php 4 Feb 2008 15:56:43 -0000 1.65 --- mx_functions_core.php 5 Feb 2008 14:51:27 -0000 1.66 *************** *** 102,106 **** /** ! * Get mxBB config data * * @access public --- 102,106 ---- /** ! * Get MX-Publisher config data * * @access public Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** mx_functions_style.php 5 Feb 2008 02:10:14 -0000 1.37 --- mx_functions_style.php 5 Feb 2008 14:51:27 -0000 1.38 *************** *** 135,139 **** * * The mx_Template class extends the native phpBB Template class, in reality only redefining the make_filename method. ! * Thus modded phpBB templates (eg eXtreme Styles MOD) will also be available for mxBB. * * @package Style --- 135,139 ---- * * The mx_Template class extends the native phpBB Template class, in reality only redefining the make_filename method. ! * Thus modded phpBB templates (eg eXtreme Styles MOD) will also be available for MX-Publisher. * * @package Style *************** *** 188,192 **** $filename2 = substr_count($filename, 'html') ? str_replace(".html", ".tpl", $filename) : str_replace(".tpl", ".html", $filename); // ! // Look at mxBB-Module folder.........................................................................mxBB-module // if (!empty($module_root_path)) --- 188,192 ---- $filename2 = substr_count($filename, 'html') ? str_replace(".html", ".tpl", $filename) : str_replace(".tpl", ".html", $filename); // ! // Look at MX-Publisher-Module folder.........................................................................MX-Publisher-module // if (!empty($module_root_path)) *************** *** 265,269 **** // ! // Look at mxBB-Root folder.........................................................................mxBB-Root // if( file_exists($mx_root_path . 'templates/' . $style_path . '/' . $filename) ) --- 265,269 ---- // ! // Look at MX-Publisher-Root folder.........................................................................MX-Publisher-Root // if( file_exists($mx_root_path . 'templates/' . $style_path . '/' . $filename) ) *************** *** 878,882 **** if ( !($row = $db->sql_fetchrow($result)) ) { ! mx_message_die(CRITICAL_ERROR, "Could not get mxBB style data for themes_id [$style]"); } } --- 878,882 ---- if ( !($row = $db->sql_fetchrow($result)) ) { ! mx_message_die(CRITICAL_ERROR, "Could not get MX-Publisher style data for themes_id [$style]"); } } *************** *** 970,974 **** // ! // Load mxBB Template configuration data // @include($mx_root_path . $this->current_template_path . '/' . $this->template_name . '.cfg'); --- 970,974 ---- // ! // Load MX-Publisher Template configuration data // @include($mx_root_path . $this->current_template_path . '/' . $this->template_name . '.cfg'); *************** *** 993,997 **** if ( !$mx_template_config ) { ! mx_message_die(CRITICAL_ERROR, "Could not open mxBB $this->template_name template config file", '', __LINE__, __FILE__); } --- 993,997 ---- if ( !$mx_template_config ) { ! mx_message_die(CRITICAL_ERROR, "Could not open MX-Publisher $this->template_name template config file", '', __LINE__, __FILE__); } *************** *** 1175,1179 **** // ! // Load mxBB Template configuration data // - First try current template // --- 1175,1179 ---- // ! // Load MX-Publisher Template configuration data // - First try current template // *************** *** 1212,1216 **** if ( !$mx_template_config ) { ! mx_message_die(CRITICAL_ERROR, "Could not open mxBB " . $module_root_path . $this->default_current_template_path . " style config file", '', __LINE__, __FILE__); } --- 1212,1216 ---- if ( !$mx_template_config ) { ! mx_message_die(CRITICAL_ERROR, "Could not open MX-Publisher " . $module_root_path . $this->default_current_template_path . " style config file", '', __LINE__, __FILE__); } Index: mx_functions_admincp.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_admincp.php,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** mx_functions_admincp.php 4 Feb 2008 18:09:04 -0000 1.45 --- mx_functions_admincp.php 5 Feb 2008 14:51:27 -0000 1.46 *************** *** 4,8 **** * @package AdminCP * @version $Id$ ! * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mx-publisher.com --- 4,8 ---- * @package AdminCP * @version $Id$ ! * @copyright (c) 2002-2006 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mx-publisher.com Index: mx_constants.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_constants.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** mx_constants.php 4 Feb 2008 15:56:43 -0000 1.26 --- mx_constants.php 5 Feb 2008 14:51:27 -0000 1.27 *************** *** 73,77 **** /**#@+ ! * mxBB Core table names * @access public */ --- 73,77 ---- /**#@+ ! * MX-Publisher Core table names * @access public */ Index: mx_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions.php,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** mx_functions.php 4 Feb 2008 15:56:43 -0000 1.74 --- mx_functions.php 5 Feb 2008 14:51:27 -0000 1.75 *************** *** 436,442 **** /** ! * Generate mxBB URL, with arguments. * ! * This function returns a mxBB URL with GET vars, and accepts any number of parwise arguments. * * @access public --- 436,442 ---- /** ! * Generate MX-Publisher URL, with arguments. * ! * This function returns a MX-Publisher URL with GET vars, and accepts any number of parwise arguments. * * @access public *************** *** 511,517 **** /** ! * Generate mxBB URL, with arguments. * ! * This function returns a mxBB URL with GET vars, and accepts arguments in the $args array(). * * @access public --- 511,517 ---- /** ! * Generate MX-Publisher URL, with arguments. * ! * This function returns a MX-Publisher URL with GET vars, and accepts arguments in the $args array(). * * @access public *************** *** 886,890 **** /** ! * Compose mxBB copyrights and credits page. * @access public */ --- 886,890 ---- /** ! * Compose MX-Publisher copyrights and credits page. * @access public */ |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:35
|
Update of /cvsroot/mxbb/core/install In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/install Modified Files: mx_install.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: mx_install.php =================================================================== RCS file: /cvsroot/mxbb/core/install/mx_install.php,v retrieving revision 1.83 retrieving revision 1.84 diff -C2 -d -r1.83 -r1.84 *** mx_install.php 4 Feb 2008 15:58:09 -0000 1.83 --- mx_install.php 5 Feb 2008 14:51:28 -0000 1.84 *************** *** 34,38 **** $mx_portal_name = 'MX-Publisher Modular System'; $mx_portal_version = '2.9.2'; ! $mx_portal_copy = '<b>MX-Publisher Modular System!</b> <br /><br/> MX-Publisher is a fully modular system, portal and CMS, featuring dynamic pages, blocks, and themes, by means of a powerful yet flexible AdminCP. It is the classical phpBB portal add-on, improved and enhanced for every phpBB version released since 2001 (originally named mxBB). <br /><br />Authors: The MX-Publisher Development Team. <br />Please visit <a href="http://www.mx-publisher.com/">www.mx-publisher.com</a> for further information.'; // --- 34,38 ---- $mx_portal_name = 'MX-Publisher Modular System'; $mx_portal_version = '2.9.2'; ! $mx_portal_copy = '<b>MX-Publisher Modular System!</b> <br /><br/> MX-Publisher is a fully modular system, portal and CMS, featuring dynamic pages, blocks, and themes, by means of a powerful yet flexible AdminCP. It is the classical phpBB portal add-on, improved and enhanced for every phpBB version released since 2001 (originally named MX-Publisher). <br /><br />Authors: The MX-Publisher Development Team. <br />Please visit <a href="http://www.mx-publisher.com/">www.mx-publisher.com</a> for further information.'; // *************** *** 1027,1031 **** // ! // Get the mxBB base dir (computed from the phpbb search path), for example /mx/, /portal/ or / // $mx_base_path = substr($mx_absolute_path, strlen($phpbb_search_path)); --- 1027,1031 ---- // ! // Get the MX-Publisher base dir (computed from the phpbb search path), for example /mx/, /portal/ or / // $mx_base_path = substr($mx_absolute_path, strlen($phpbb_search_path)); *************** *** 1037,1041 **** // ! // Get the mxBB Path in the URL (this might not be the same as the base path when using aliases). // $mx_self_path = substr($HTTP_SERVER_VARS['PHP_SELF'], 0, -strlen('install/'.basename(__FILE__))); --- 1037,1041 ---- // ! // Get the MX-Publisher Path in the URL (this might not be the same as the base path when using aliases). // $mx_self_path = substr($HTTP_SERVER_VARS['PHP_SELF'], 0, -strlen('install/'.basename(__FILE__))); |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:35
|
Update of /cvsroot/mxbb/core/modules/mx_news/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/modules/mx_news/language/lang_english Modified Files: lang_admin.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_news/language/lang_english/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 4 Feb 2008 16:52:40 -0000 1.2 --- lang_admin.php 5 Feb 2008 14:51:28 -0000 1.3 *************** *** 42,46 **** $lang['Wysiwyg_path'] = 'Path to WYSIWYG software'; ! $lang['Wysiwyg_path_explain'] = 'This is the path (from mxBB/phpBB root) to the WYSIWYG software folder, eg \'modules/mx_shared/\' if you have uploaded, for example, TinyMCE in modules/mx_shared/tinymce.'; // --- 42,46 ---- $lang['Wysiwyg_path'] = 'Path to WYSIWYG software'; ! $lang['Wysiwyg_path_explain'] = 'This is the path (from MX-Publisher/phpBB root) to the WYSIWYG software folder, eg \'modules/mx_shared/\' if you have uploaded, for example, TinyMCE in modules/mx_shared/tinymce.'; // |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:35
|
Update of /cvsroot/mxbb/core/modules/mx_mod_rewrite/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/modules/mx_mod_rewrite/includes Modified Files: rewrite_constants.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: rewrite_constants.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_mod_rewrite/includes/rewrite_constants.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** rewrite_constants.php 4 Feb 2008 16:51:35 -0000 1.5 --- rewrite_constants.php 5 Feb 2008 14:51:28 -0000 1.6 *************** *** 34,37 **** // ---------- $phpbb_module_version = "1.0"; ! $phpbb_module_author = "mxBB Team"; ?> \ No newline at end of file --- 34,37 ---- // ---------- $phpbb_module_version = "1.0"; ! $phpbb_module_author = "MX-Publisher Team"; ?> \ No newline at end of file |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:34
|
Update of /cvsroot/mxbb/core/modules/mx_rebuild_search_tables In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/modules/mx_rebuild_search_tables Modified Files: db_install.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_rebuild_search_tables/db_install.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** db_install.php 5 Feb 2008 10:31:14 -0000 1.4 --- db_install.php 5 Feb 2008 14:51:28 -0000 1.5 *************** *** 33,37 **** $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original phpBB <i>Rebuild Search Tables</i> by the phpBB Team :: Adapted for mxBB by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; $message = "<b>" . $lang['fresh_install'] . "!</b><br/><br/>"; --- 33,37 ---- $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original phpBB <i>Rebuild Search Tables</i> by the phpBB Team :: Adapted for MX-Publisher by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; $message = "<b>" . $lang['fresh_install'] . "!</b><br/><br/>"; |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:34
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/admin Modified Files: admin_mx_chkobjs.php index.php page_header_admin.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: page_header_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/page_header_admin.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** page_header_admin.php 4 Feb 2008 15:44:45 -0000 1.21 --- page_header_admin.php 5 Feb 2008 14:51:27 -0000 1.22 *************** *** 85,89 **** // ! // These theme variables are not used for mxBB, since mxBB require a theme.css file // /* --- 85,89 ---- // ! // These theme variables are not used for MX-Publisher, since MX-Publisher require a theme.css file // /* *************** *** 128,132 **** */ ! //+ mxBB 'L_MX_ADMIN' => $lang['mxBB_adminCP'], 'U_PHPBB_ROOT_PATH' => PHPBB_URL, --- 128,132 ---- */ ! //+ MX-Publisher 'L_MX_ADMIN' => $lang['mxBB_adminCP'], 'U_PHPBB_ROOT_PATH' => PHPBB_URL, *************** *** 140,144 **** 'MX_ICON_CSS' => $images['mx_graphics']['icon_style'], 'LOGO' => $images['mx_logo'] ! //- mxBB )); --- 140,144 ---- 'MX_ICON_CSS' => $images['mx_graphics']['icon_style'], 'LOGO' => $images['mx_logo'] ! //- MX-Publisher )); Index: admin_mx_chkobjs.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_chkobjs.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** admin_mx_chkobjs.php 4 Feb 2008 15:44:45 -0000 1.24 --- admin_mx_chkobjs.php 5 Feb 2008 14:51:27 -0000 1.25 *************** *** 31,35 **** // [ GLOBAL DATA ] // ====================================================== ! $main_title = "Check mxBB Objects"; $main_desc = "This utility allows you to check MX-Publisher object relationships."; $main_info = "This report shows the relations between MX-Publisher tables. " . --- 31,35 ---- // [ GLOBAL DATA ] // ====================================================== ! $main_title = "Check MX-Publisher Objects"; $main_desc = "This utility allows you to check MX-Publisher object relationships."; $main_info = "This report shows the relations between MX-Publisher tables. " . Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/index.php,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** index.php 4 Feb 2008 15:44:44 -0000 1.39 --- index.php 5 Feb 2008 14:51:27 -0000 1.40 *************** *** 995,999 **** /* End phpBB version check code block */ ! /* Begin mxBB version check code block */ $current_mxbb_version = explode('.', $portal_config['portal_version']); $minor_mxbb_revision = (int) $current_mxbb_version[2]; --- 995,999 ---- /* End phpBB version check code block */ ! /* Begin MX-Publisher version check code block */ $current_mxbb_version = explode('.', $portal_config['portal_version']); $minor_mxbb_revision = (int) $current_mxbb_version[2]; |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:34
|
Update of /cvsroot/mxbb/core/modules/mx_news In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/modules/mx_news Modified Files: db_install.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_news/db_install.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** db_install.php 5 Feb 2008 10:31:13 -0000 1.5 --- db_install.php 5 Feb 2008 14:51:29 -0000 1.6 *************** *** 31,35 **** $mx_module_version = '1.0.0'; ! $mx_module_copy = 'Created for mxBB by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; // For compatibility with core 2.7.+ --- 31,35 ---- $mx_module_version = '1.0.0'; ! $mx_module_copy = 'Created for MX-Publisher by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; // For compatibility with core 2.7.+ |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:34
|
Update of /cvsroot/mxbb/core/modules/mx_textblocks In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/modules/mx_textblocks Modified Files: db_upgrade.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_textblocks/db_upgrade.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** db_upgrade.php 5 Feb 2008 10:31:12 -0000 1.10 --- db_upgrade.php 5 Feb 2008 14:51:27 -0000 1.11 *************** *** 33,37 **** $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original mxBB <i>Textblocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; $message = "<b>" . $lang['upgrading'] . "!</b><br/><br/>"; --- 33,37 ---- $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Original MX-Publisher <i>Textblocks</i> module by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; $message = "<b>" . $lang['upgrading'] . "!</b><br/><br/>"; |
|
From: Yettyn <jo...@us...> - 2008-02-05 14:51:34
|
Update of /cvsroot/mxbb/core/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21190/language/lang_english Modified Files: lang_main.php Log Message: yet a bunch of more updates of MX-Publisher referenses Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_english/lang_main.php,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** lang_main.php 4 Feb 2008 15:58:44 -0000 1.38 --- lang_main.php 5 Feb 2008 14:51:27 -0000 1.39 *************** *** 109,113 **** // along with our copyright message indicating you are the translator // please add it here. ! //$lang['TRANSLATION_INFO_MXBB'] = 'English Language by <a href="http://www.mx-publisher.com" target="_blank">mxBB Development Team</a>'; // --- 109,113 ---- // along with our copyright message indicating you are the translator // please add it here. ! //$lang['TRANSLATION_INFO_MXBB'] = 'English Language by <a href="http://www.mx-publisher.com" target="_blank">MX-Publisher Development Team</a>'; // |