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: FlorinCB <ory...@us...> - 2009-10-09 22:04:22
|
Update of /cvsroot/mxbb/core In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17047 Modified Files: index.php Log Message: upd Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/index.php,v retrieving revision 1.80 retrieving revision 1.81 diff -C2 -d -r1.80 -r1.81 *** index.php 6 Nov 2008 00:16:38 -0000 1.80 --- index.php 9 Oct 2009 22:04:14 -0000 1.81 *************** *** 11,15 **** define( 'IN_PORTAL', 1 ); - $phpEx = substr(strrchr(__FILE__, '.'), 1); $mx_root_path = "./"; --- 11,14 ---- |
|
From: FlorinCB <ory...@us...> - 2009-10-09 22:03:14
|
Update of /cvsroot/mxbb/mx_radiocast/radiocast_mod In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv16903 Modified Files: radiocast_integration.php Log Message: Index: radiocast_integration.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/radiocast_mod/radiocast_integration.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** radiocast_integration.php 21 Mar 2008 08:51:10 -0000 1.2 --- radiocast_integration.php 9 Oct 2009 22:02:57 -0000 1.3 *************** *** 47,73 **** if (!function_exists('this_rc_mxurl')) { ! function this_rc_mxurl($args = '', $force_standalone_mode = false) { ! global $mx_root_path, $module_root_path, $page_id, $radiocast_index, $phpEx, $integration_enabled, $is_block; ! if( $force_standalone_mode || !$is_block ) { ! $mxurl = $mx_root_path . 'modules/mx_radiocast/' . 'radiocast.' . $phpEx . ($args == '' ? '' : '?' . $args); } else { $mxurl = $mx_root_path . 'index.' . $phpEx; ! if( is_numeric($page_id) && !empty($page_id) ) { ! $mxurl .= '?page=' . $page_id . ($args == '' ? '' : '&' . $args); } else { ! $mxurl .= '?page=' . $radiocast_index . ($args == '' ? '' : '&' . $args); } } return $mxurl; ! } } --- 47,119 ---- if (!function_exists('this_rc_mxurl')) { ! function this_rc_mxurl($args = '', $force_standalone_mode = false, $non_html_amp = false, $pageId = '', $mod_rewrite = true) { ! global $_SID, $_EXTRA_URL, $_GET, $mx_root_path, $module_root_path, $page_id, $phpEx, $is_block, $mx_mod_rewrite; + // Assign sid if session id is not specified + if ($session_id === false) + { + $session_id = $_SID; + } ! if (is_array($session_id)) { ! $session_id = $mx_user->session_id; ! } ! ! $mod_rewrite = $_GET['mod_rewrite'] ? $_GET['mod_rewrite'] : $mod_rewrite; ! ! $pageId = empty($pageId) ? $page_id : $pageId; ! $dynamicId = !empty($_GET['dynamic_block']) ? ( $non_html_amp ? '&dynamic_block=' : '&dynamic_block=' ) . $_GET['dynamic_block'] : ''; ! ! // Replaces same function in mx_sessions_phpbbx.php ! if ($mod_rewrite) ! { ! // Is mod_rewrite enabled? If so, do some url rewrites... ! $args .= ($args == '' ? '' : '&' ) . 'modrewrite=yes'; ! } ! else ! { ! $mx_root_path = PORTAL_URL; ! $module_root_path = PORTAL_URL . $module_root_path; //'modules/mx_radiocast/'; ! $args .= ($args == '' ? '' : '&' ) . 'modrewrite=no'; ! } ! ! if ( !MXBB_MODULE ) ! { ! $mxurl = $module_root_path . 'radiocast.' . $phpEx . ( $args == '' ? '' : '?' . $args ); ! return $mxurl; ! } ! ! if ( $force_standalone_mode || !$is_block ) ! { ! $mxurl = $module_root_path . 'radiocast.' . $phpEx . ( $args == '' ? '' : '?' . $args ); } else { $mxurl = $mx_root_path . 'index.' . $phpEx; ! if (is_numeric($pageId)) { ! $mxurl .= '?page=' . $pageId . $dynamicId . ( $args == '' ? '' : ( $non_html_amp ? '&' : '&' ) . $args ); } else { ! $mxurl .= ( $args == '' ? '' : '?' . $args ); ! } ! ! $mxurl .= ((!$session_id) ? '' : $amp_delim . 'sid=' . $session_id); ! } ! ! // Replaces same function in mx_sessions_phpbbx.php ! if ($mod_rewrite) ! { ! // Is mod_rewrite enabled? If so, do some url rewrites... ! if (is_object($mx_mod_rewrite)) ! { ! $mxurl = $mx_mod_rewrite->encode($mxurl); } } return $mxurl; ! } } |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:52:22
|
Update of /cvsroot/mxbb/mx_pafiledb In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv9523 Modified Files: db_install.php db_upgrade.php Log Message: upd Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/db_install.php,v retrieving revision 1.42 retrieving revision 1.43 diff -C2 -d -r1.42 -r1.43 *** db_install.php 29 Jul 2009 05:26:31 -0000 1.42 --- db_install.php 8 Oct 2009 23:52:09 -0000 1.43 *************** *** 30,34 **** } ! $mx_module_version = '2.2.8'; $mx_module_copy = 'Original phpBB <i>pafileDB</i> MOD by Mohd/Jon Ohlsson/Orynider</a> based on <a href="http://www.phparena.net/" target="_blank">PHP Arena, pafileDB</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; --- 30,34 ---- } ! $mx_module_version = '2.2.9'; $mx_module_copy = 'Original phpBB <i>pafileDB</i> MOD by Mohd/Jon Ohlsson/Orynider</a> based on <a href="http://www.phparena.net/" target="_blank">PHP Arena, pafileDB</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/db_upgrade.php,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** db_upgrade.php 29 Jul 2009 05:26:31 -0000 1.33 --- db_upgrade.php 8 Oct 2009 23:52:09 -0000 1.34 *************** *** 30,34 **** } ! $mx_module_version = '2.2.8'; $mx_module_copy = 'Original phpBB <i>pafileDB</i> MOD by Mohd/Jon Ohlsson/Orynider</a> based on <a href="http://www.phparena.net/" target="_blank">PHP Arena, pafileDB</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; --- 30,34 ---- } ! $mx_module_version = '2.2.9'; $mx_module_copy = 'Original phpBB <i>pafileDB</i> MOD by Mohd/Jon Ohlsson/Orynider</a> based on <a href="http://www.phparena.net/" target="_blank">PHP Arena, pafileDB</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:48:42
|
Update of /cvsroot/mxbb/phpbb2mxp/templates/subSilver In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8827 Modified Files: subSilver.cfg Log Message: upd |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:48:15
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_english In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8420/lang_english Modified Files: lang_admin.php lang_bbcode.php lang_faq.php lang_main.php lang_meta.php Log Message: upd Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/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 24 Jan 2009 05:09:55 -0000 1.2 --- lang_admin.php 8 Oct 2009 23:48:05 -0000 1.3 *************** *** 753,757 **** // $lang['Version_up_to_date'] = 'Your installation is up to date, no updates are available for your version of phpBB.'; ! $lang['Version_not_up_to_date'] = 'Your installation does <b>not</b> seem to be up to date. Updates are available for your version of phpBB, please visit <a href="http://www.phpbb.com/downloads.php" target="_new">http://www.phpbb.com/downloads.php</a> to obtain the latest version.'; $lang['Latest_version_info'] = 'The latest available version is <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'You are running <b>phpBB %s</b>.'; --- 753,757 ---- // $lang['Version_up_to_date'] = 'Your installation is up to date, no updates are available for your version of phpBB.'; ! $lang['Version_not_up_to_date'] = 'Your installation does <b>not</b> seem to be up to date. Updates are available for your version of phpBB, please visit <a href="http://www.phpbb.com/downloads/" target="_new">http://www.phpbb.com/downloads/</a> to obtain the latest version.'; $lang['Latest_version_info'] = 'The latest available version is <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'You are running <b>phpBB %s</b>.'; |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:48:15
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_swedish In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8420/lang_swedish Modified Files: lang_admin.php Log Message: upd Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/language/lang_swedish/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 24 Jan 2009 05:10:07 -0000 1.2 --- lang_admin.php 8 Oct 2009 23:48:06 -0000 1.3 *************** *** 779,783 **** // $lang['Version_up_to_date'] = 'Din installation använder senaste phpBB versionen, inga nya uppdateringar finns tillgängliga.'; ! $lang['Version_not_up_to_date'] = 'Din phpBB installation är <b>inte</b> uppdaterad. Det finns nya uppdateringar tillgängliga, vänligen besök <a href="http://www.phpbb.com/downloads.php" target="_new">http://www.phpbb.com/downloads.php</a> för att tillgĺ senaste versionen.'; $lang['Latest_version_info'] = 'Senaste versionen är <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'Du använder <b>phpBB %s</b>.'; --- 779,783 ---- // $lang['Version_up_to_date'] = 'Din installation använder senaste phpBB versionen, inga nya uppdateringar finns tillgängliga.'; ! $lang['Version_not_up_to_date'] = 'Din phpBB installation är <b>inte</b> uppdaterad. Det finns nya uppdateringar tillgängliga, vänligen besök <a href="http://www.phpbb.com/downloads/" target="_new">http://www.phpbb.com/downloads/</a> för att tillgĺ senaste versionen.'; $lang['Latest_version_info'] = 'Senaste versionen är <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'Du använder <b>phpBB %s</b>.'; |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:48:15
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_romanian_no_diacritics In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8420/lang_romanian_no_diacritics Modified Files: lang_admin.php lang_main.php lang_meta.php Log Message: upd Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/language/lang_romanian_no_diacritics/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 24 Jan 2009 05:10:07 -0000 1.2 --- lang_admin.php 8 Oct 2009 23:48:06 -0000 1.3 *************** *** 757,761 **** // $lang['Version_up_to_date'] = 'Forumul dumneavoastra foloseste ultima versiune phpBB. Nu sunt actualizari disponibile pentru versiunea dumneavoastra.'; ! $lang['Version_not_up_to_date'] = 'Forumul dumneavoastra pare sa <b>nu</b> fie actualizat. Noile versiuni sunt disponibile la adresa <a href="http://www.phpbb.com/downloads.php" target="_new">http://www.phpbb.com/downloads.php</a>.'; $lang['Latest_version_info'] = 'Cea mai noua versiune este <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'Folositi <b>phpBB %s</b>.'; --- 757,761 ---- // $lang['Version_up_to_date'] = 'Forumul dumneavoastra foloseste ultima versiune phpBB. Nu sunt actualizari disponibile pentru versiunea dumneavoastra.'; ! $lang['Version_not_up_to_date'] = 'Forumul dumneavoastra pare sa <b>nu</b> fie actualizat. Noile versiuni sunt disponibile la adresa <a href="http://www.phpbb.com/downloads/" target="_new">http://www.phpbb.com/downloads/</a>.'; $lang['Latest_version_info'] = 'Cea mai noua versiune este <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'Folositi <b>phpBB %s</b>.'; |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:48:15
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8420/lang_romanian Modified Files: lang_admin.php Log Message: upd Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/language/lang_romanian/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 24 Jan 2009 05:10:07 -0000 1.2 --- lang_admin.php 8 Oct 2009 23:48:06 -0000 1.3 *************** *** 756,760 **** // $lang['Version_up_to_date'] = 'Forumul dumneavoastrÄ foloseÅte ultima versiune phpBB. Nu sunt actualizÄri disponibile pentru versiunea dumneavoastrÄ.'; ! $lang['Version_not_up_to_date'] = 'Forumul dumneavoastrÄ pare sÄ <b>nu</b> fie actualizat. Noile versiuni sunt disponibile la adresa <a href="http://www.phpbb.com/downloads.php" target="_new">http://www.phpbb.com/downloads.php</a>.'; $lang['Latest_version_info'] = 'Cea mai nouÄ versiune este <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'FolosiÅ£i <b>phpBB %s</b>.'; --- 756,760 ---- // $lang['Version_up_to_date'] = 'Forumul dumneavoastrÄ foloseÅte ultima versiune phpBB. Nu sunt actualizÄri disponibile pentru versiunea dumneavoastrÄ.'; ! $lang['Version_not_up_to_date'] = 'Forumul dumneavoastrÄ pare sÄ <b>nu</b> fie actualizat. Noile versiuni sunt disponibile la adresa <a href="http://www.phpbb.com/downloads/" target="_new">http://www.phpbb.com/downloads/</a>.'; $lang['Latest_version_info'] = 'Cea mai nouÄ versiune este <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'FolosiÅ£i <b>phpBB %s</b>.'; |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:48:13
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_greek In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8420/lang_greek Modified Files: lang_admin.php Log Message: upd Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/language/lang_greek/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 24 Jan 2009 05:10:07 -0000 1.2 --- lang_admin.php 8 Oct 2009 23:48:05 -0000 1.3 *************** *** 840,844 **** για καÏÎβαÏμα αÏÏ Ïην phpBB."; $lang['Version_not_up_to_date'] = 'ΠεγκαÏεÏÏημÎνη ÏÎ±Ï ÎκδοÏη <b>not</b> ÏÎνεÏαι ÏÏÏ ÎµÎ¯Î½Î±Î¹ Ïαλιά. ! Î¥ÏάÏÏÎ¿Ï Î½ διαθÎÏÎ¹Î¼Ï ÎµÎ½Î·Î¼ÎµÏÏÏÎµÎ¹Ï Î³Î¹Î± Ïην ÎκδοÏη ÏÎ±Ï phpBB, ÏαÏακαλοÏμε εÏιÏκεÏθείÏε <a href="http://www.phpbb.com/downloads.php" target="_new">http://www.phpbb.com/downloads.php</a> για να καÏεβάÏεÏε Ïην ÏÎµÎ»ÎµÏ Ïαία ÎκδοÏη.'; $lang['Latest_version_info'] = 'Î ÏÎµÎ»ÎµÏ Ïαία διαθÎÏιμη ÎκδοÏη είναι η <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'ΤÏÎÏεÏε Ïην <b>phpBB %s</b>.'; --- 840,844 ---- για καÏÎβαÏμα αÏÏ Ïην phpBB."; $lang['Version_not_up_to_date'] = 'ΠεγκαÏεÏÏημÎνη ÏÎ±Ï ÎκδοÏη <b>not</b> ÏÎνεÏαι ÏÏÏ ÎµÎ¯Î½Î±Î¹ Ïαλιά. ! Î¥ÏάÏÏÎ¿Ï Î½ διαθÎÏÎ¹Î¼Ï ÎµÎ½Î·Î¼ÎµÏÏÏÎµÎ¹Ï Î³Î¹Î± Ïην ÎκδοÏη ÏÎ±Ï phpBB, ÏαÏακαλοÏμε εÏιÏκεÏθείÏε <a href="http://www.phpbb.com/downloads/" target="_new">http://www.phpbb.com/downloads/</a> για να καÏεβάÏεÏε Ïην ÏÎµÎ»ÎµÏ Ïαία ÎκδοÏη.'; $lang['Latest_version_info'] = 'Î ÏÎµÎ»ÎµÏ Ïαία διαθÎÏιμη ÎκδοÏη είναι η <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'ΤÏÎÏεÏε Ïην <b>phpBB %s</b>.'; |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:47:46
|
Update of /cvsroot/mxbb/phpbb2mxp/install/schemas In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8312 Modified Files: mssql_schema.sql mysql_40_basic.sql mysql_40_schema.sql mysql_41_basic.sql mysql_41_schema.sql mysql_basic.sql postgres_basic.sql postgres_schema.sql Log Message: upd |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:46:41
|
Update of /cvsroot/mxbb/phpbb2mxp/includes/db In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv7740/db Modified Files: dbal.php firebird.php mssql.php mssql_odbc.php mysql.php mysql4.php mysqli.php oracle.php postgres.php sqlite.php Log Message: upd Index: mysqli.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/includes/db/mysqli.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mysqli.php 24 Jan 2009 05:09:55 -0000 1.2 --- mysqli.php 8 Oct 2009 23:46:32 -0000 1.3 *************** *** 55,63 **** { // mysqli only supported by phpBB3 ! //if (UTF_STATUS === 'phpbb3') ! //{ ! @mysqli_query($this->db_connect_id, "SET NAMES 'utf8'"); ! // enforce strict mode on databases that support it ! //} if (mysqli_get_server_version($this->db_connect_id) >= 50002) { --- 55,62 ---- { // mysqli only supported by phpBB3 ! if (UTF_STATUS === 'phpbb3') ! { ! @mysqli_query($this->db_connect_id, "SET NAMES 'utf8'"); // enforce strict mode on databases that support it ! } if (mysqli_get_server_version($this->db_connect_id) >= 50002) { |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:46:41
|
Update of /cvsroot/mxbb/phpbb2mxp/includes/utf In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv7740/utf Modified Files: utf_normalizer.php utf_tools.php Log Message: upd |
Update of /cvsroot/mxbb/phpbb2mxp/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6781/admin Modified Files: admin_board.php admin_db_utilities.php admin_disallow.php admin_forum_prune.php admin_forumauth.php admin_forums.php admin_groups.php admin_mass_email.php admin_post_count_resync.php admin_ranks.php admin_smilies.php admin_styles.php admin_ug_auth.php admin_user_ban.php admin_users.php admin_words.php index.php page_footer_admin.php page_header_admin.php pagestart.php Log Message: upd Index: index.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/admin/index.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.php 24 Jan 2009 05:09:45 -0000 1.2 --- index.php 8 Oct 2009 23:41:55 -0000 1.3 *************** *** 235,241 **** $version = $row['mysql_version']; ! if( preg_match("/^(3\.23|4\.|5\.)/", $version) ) { ! $db_name = ( preg_match("/^(3\.23\.[6-9])|(3\.23\.[1-9][1-9])|(4\.)|(5\.)/", $version) ) ? "`$dbname`" : $dbname; $sql = "SHOW TABLE STATUS --- 235,241 ---- $version = $row['mysql_version']; ! if( preg_match("/^(3\.24|4\.|5\.)/", $version) ) { ! $db_name = ( preg_match("/^(3\.24\.[6-9])|(3\.24\.[1-9][1-9])|(4\.)|(5\.)/", $version) ) ? "`$dbname`" : $dbname; $sql = "SHOW TABLE STATUS *************** *** 568,575 **** $errstr = $version_info = ''; ! if ($fsock = @fsockopen('www.phpbb.com', 80, $errno, $errstr, 10)) { @fputs($fsock, "GET /updatecheck/20x.txt HTTP/1.1\r\n"); ! @fputs($fsock, "HOST: www.phpbb.com\r\n"); @fputs($fsock, "Connection: close\r\n\r\n"); --- 568,575 ---- $errstr = $version_info = ''; ! if ($fsock = @fsockopen('mx-publisher.com', 80, $errno, $errstr, 10)) { @fputs($fsock, "GET /updatecheck/20x.txt HTTP/1.1\r\n"); ! @fputs($fsock, "HOST: mx-publisher.com\r\n"); @fputs($fsock, "Connection: close\r\n\r\n"); *************** *** 600,603 **** --- 600,608 ---- $version_info = '<p style="color:green">' . $lang['Version_up_to_date'] . '</p>'; } + else if ($latest_head_revision == 2 && $minor_revision > $latest_minor_revision) + { + $version_info = '<p style="color:green">' . $lang['Version_up_to_date']; + $version_info .= '<br />' . sprintf($lang['Latest_version_info'], $latest_version) . ' ' . sprintf($lang['Current_version_info'], '2' . $board_config['version']) . '</p>'; + } else { |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:42:34
|
Update of /cvsroot/mxbb/phpbb2mxp/docs In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6781/docs Modified Files: codingstandards.htm Log Message: upd |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:42:34
|
Update of /cvsroot/mxbb/phpbb2mxp In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6781 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: upd Index: common.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/common.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** common.php 24 Jan 2009 07:30:05 -0000 1.4 --- common.php 8 Oct 2009 23:41:55 -0000 1.5 *************** *** 207,211 **** --- 207,216 ---- include_once($mx_root_path.'modules/mx_phpbb/includes/forum_hack.'.$phpEx); } + else + { + print("Forum Integration (mx_phpbb) " . $mx_root_path . "modules/mx_phpbb/includes/forum_hack.$phpEx couldn't be opened.<br /> Please check if \$mx_root_path is defined correct."); + } } + //-mxp /* |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:42:34
|
Update of /cvsroot/mxbb/phpbb2mxp/install In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6781/install Modified Files: install.php update_to_latest.php upgrade.php Log Message: upd Index: upgrade.php =================================================================== RCS file: /cvsroot/mxbb/phpbb2mxp/install/upgrade.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** upgrade.php 24 Jan 2009 05:09:55 -0000 1.2 --- upgrade.php 8 Oct 2009 23:41:55 -0000 1.3 *************** *** 1810,1814 **** $version = $row['mysql_version']; ! if ( preg_match("/^(3\.23)|(4\.)/", $version) ) { $sql = "ALTER TABLE " . $table_prefix . "sessions --- 1810,1814 ---- $version = $row['mysql_version']; ! if ( preg_match("/^(3\.24)|(4\.)/", $version) ) { $sql = "ALTER TABLE " . $table_prefix . "sessions |
Update of /cvsroot/mxbb/phpbb2mxp/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv6781/includes Modified Files: auth.php bbcode.php constants.php emailer.php functions.php functions_admin.php functions_post.php functions_search.php functions_selects.php functions_validate.php page_header.php page_header_normal.php page_tail.php prune.php sessions.php smtp.php sql_parse.php topic_review.php usercp_activate.php usercp_avatar.php usercp_confirm.php usercp_email.php usercp_register.php usercp_sendpasswd.php usercp_viewprofile.php Log Message: upd |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:23:39
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/modules In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv5123/pafiledb/modules Modified Files: pa_search.php pa_toplist.php Log Message: fixed some modrewrite bugs Index: pa_toplist.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/modules/pa_toplist.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** pa_toplist.php 21 Sep 2008 14:25:38 -0000 1.27 --- pa_toplist.php 8 Oct 2009 23:23:26 -0000 1.28 *************** *** 282,285 **** --- 282,287 ---- // Get the post icon fot this file // =================================================== + $module_root_path = PORTAL_URL . $module_root_path; + //die("$module_root_path"); if ( $file_rowset[$i]['file_pin'] != FILE_PINNED ) { *************** *** 290,294 **** else { ! $posticon = '<img src="' . $module_root_path . ICONS_DIR . $file_rowset[$i]['file_posticon'] . '" border="0" />'; } } --- 292,296 ---- else { ! $posticon = '<img src="' . ICONS_DIR . $file_rowset[$i]['file_posticon'] . '" border="0" />'; } } *************** *** 488,492 **** else { ! $posticon = '<img src="' . $module_root_path . ICONS_DIR . $searchset[$i]['file_posticon'] . '" border="0" />'; } } --- 490,494 ---- else { ! $posticon = '<img src="' . ICONS_DIR . $searchset[$i]['file_posticon'] . '" border="0" />'; } } Index: pa_search.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/modules/pa_search.php,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** pa_search.php 21 Sep 2008 14:25:36 -0000 1.28 --- pa_search.php 8 Oct 2009 23:23:26 -0000 1.29 *************** *** 554,558 **** else { ! $posticon = '<img src="' . $module_root_path . ICONS_DIR . $searchset[$i]['file_posticon'] . '" border="0" />'; } } --- 554,558 ---- else { ! $posticon = '<img src="' . ICONS_DIR . $searchset[$i]['file_posticon'] . '" border="0" />'; } } |
|
From: FlorinCB <ory...@us...> - 2009-10-08 23:23:36
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv5123/pafiledb/includes Modified Files: functions.php functions_cache.php functions_pafiledb.php pafiledb_constants.php Log Message: fixed some modrewrite bugs Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** functions.php 29 Jul 2009 05:08:12 -0000 1.54 --- functions.php 8 Oct 2009 23:23:26 -0000 1.55 *************** *** 442,446 **** } ! $handle = @opendir( $module_root_path . ICONS_DIR ); while ( $icon = @readdir( $handle ) ) --- 442,446 ---- } ! $handle = @opendir( ICONS_DIR ); while ( $icon = @readdir( $handle ) ) *************** *** 450,458 **** if ( $file_posticon == $icon ) { ! $posticons .= '<input type="radio" name="posticon" value="' . $icon . '" checked><img src="' . $module_root_path . ICONS_DIR . $icon . '"> '; } else { ! $posticons .= '<input type="radio" name="posticon" value="' . $icon . '"><img src="' . $module_root_path . ICONS_DIR . $icon . '"> '; } --- 450,458 ---- if ( $file_posticon == $icon ) { ! $posticons .= '<input type="radio" name="posticon" value="' . $icon . '" checked><img src="' . ICONS_DIR . $icon . '"> '; } else { ! $posticons .= '<input type="radio" name="posticon" value="' . $icon . '"><img src="' . ICONS_DIR . $icon . '"> '; } Index: functions_cache.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions_cache.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** functions_cache.php 3 Jun 2008 20:17:06 -0000 1.9 --- functions_cache.php 8 Oct 2009 23:23:26 -0000 1.10 *************** *** 201,223 **** { $lines = array(); ! foreach ( $array as $k => $v ) ! { ! if ( is_array( $v ) ) ! { ! $lines[] = "'$k'=>" . $this->format_array( $v ); ! }elseif ( is_int( $v ) ) ! { ! $lines[] = "'$k'=>$v"; ! }elseif ( is_bool( $v ) ) ! { ! $lines[] = "'$k'=>" . ( ( $v ) ? 'TRUE' : 'FALSE' ); ! } ! else { ! $lines[] = "'$k'=>'" . str_replace( "'", "\'", str_replace( '\\', '\\\\', $v ) ) . "'"; } } ! return 'array(' . implode( ',', $lines ) . ')'; ! } } ?> \ No newline at end of file --- 201,230 ---- { $lines = array(); ! if ( is_array( $v ) ) ! { ! foreach ( $array as $k => $v ) { ! if ( is_array( $v ) ) ! { ! $lines[] = "'$k'=>" . $this->format_array( $v ); ! }elseif ( is_int( $v ) ) ! { ! $lines[] = "'$k'=>$v"; ! }elseif ( is_bool( $v ) ) ! { ! $lines[] = "'$k'=>" . ( ( $v ) ? 'TRUE' : 'FALSE' ); ! } ! else ! { ! $lines[] = "'$k'=>'" . str_replace( "'", "\'", str_replace( '\\', '\\\\', $v ) ) . "'"; ! } } + return 'array(' . implode( ',', $lines ) . ')'; } ! else ! { ! return 'array(' . implode( ',', $lines ) . ')'; ! } ! } } ?> \ No newline at end of file Index: pafiledb_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/pafiledb_constants.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** pafiledb_constants.php 11 Jul 2009 03:22:06 -0000 1.26 --- pafiledb_constants.php 8 Oct 2009 23:23:26 -0000 1.27 *************** *** 29,34 **** } define( 'PAGE_DOWNLOAD', -501 ); // If this id generates a conflict with other mods, change it ;) ! define( 'ICONS_DIR', 'pafiledb/images/icons/' ); // --- 29,37 ---- } + //$module_root_path = PORTAL_URL . $module_root_path; + //die("$module_root_path"); + define( 'PAGE_DOWNLOAD', -501 ); // If this id generates a conflict with other mods, change it ;) ! define( 'ICONS_DIR', PORTAL_URL . $module_root_path . 'pafiledb/images/icons/' ); // Index: functions_pafiledb.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/includes/functions_pafiledb.php,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** functions_pafiledb.php 29 Jul 2009 05:08:13 -0000 1.62 --- functions_pafiledb.php 8 Oct 2009 23:23:26 -0000 1.63 *************** *** 1060,1064 **** else { ! $posticon = $module_root_path . ICONS_DIR . $file_rowset[$i]['file_posticon']; } } --- 1060,1064 ---- else { ! $posticon = ICONS_DIR . $file_rowset[$i]['file_posticon']; } } *************** *** 1068,1072 **** } ! $save_as_icon = $module_root_path . ICONS_DIR . 'icon_download1.gif'; // --- 1068,1072 ---- } ! $save_as_icon = ICONS_DIR . 'icon_download1.gif'; // *************** *** 1386,1390 **** else { ! $posticon = $module_root_path . ICONS_DIR . $file_rowset[$i]['file_posticon']; } } --- 1386,1390 ---- else { ! $posticon = ICONS_DIR . $file_rowset[$i]['file_posticon']; } } *************** *** 1508,1512 **** if ( !MXBB_MODULE ) { ! $mxurl = $module_root_path . 'dload.' . $phpEx . ( $args == '' ? '' : '?' . $args ); return $mxurl; } --- 1508,1512 ---- if ( !MXBB_MODULE ) { ! $mxurl = PORTAL_URL . $module_root_path . 'dload.' . $phpEx . ( $args == '' ? '' : '?' . $args ); return $mxurl; } *************** *** 1514,1522 **** if ( $force_standalone_mode || !$is_block ) { ! $mxurl = $module_root_path . 'dload.' . $phpEx . ( $args == '' ? '' : '?' . $args ); } else { ! $mxurl = $mx_root_path . 'index.' . $phpEx; if ( is_numeric( $pageId ) ) { --- 1514,1522 ---- if ( $force_standalone_mode || !$is_block ) { ! $mxurl = PORTAL_URL . $module_root_path . 'dload.' . $phpEx . ( $args == '' ? '' : '?' . $args ); } else { ! $mxurl = PORTAL_URL . 'index.' . $phpEx; if ( is_numeric( $pageId ) ) { |
|
From: FlorinCB <ory...@us...> - 2009-10-08 17:48:55
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb2 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4601 Modified Files: core.php Log Message: upd Index: core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb2/core.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** core.php 28 Sep 2009 11:24:28 -0000 1.21 --- core.php 8 Oct 2009 17:48:44 -0000 1.22 *************** *** 1189,1196 **** $errstr = $phpbb_version_info = ''; ! if ($fsock = @fsockopen('www.phpbb.com', 80, $errno, $errstr, 10)) { @fputs($fsock, "GET /updatecheck/20x.txt HTTP/1.1\r\n"); ! @fputs($fsock, "HOST: www.phpbb.com\r\n"); @fputs($fsock, "Connection: close\r\n\r\n"); --- 1189,1196 ---- $errstr = $phpbb_version_info = ''; ! if ($fsock = @fsockopen('mx-publisher.com', 80, $errno, $errstr, 10)) { @fputs($fsock, "GET /updatecheck/20x.txt HTTP/1.1\r\n"); ! @fputs($fsock, "HOST: mx-publisher.com\r\n"); @fputs($fsock, "Connection: close\r\n\r\n"); |
|
From: FlorinCB <ory...@us...> - 2009-10-08 17:01:15
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv29098 Modified Files: mx_functions_admincp.php mx_functions_core.php mx_functions_style.php mx_functions_tools.php Log Message: upd Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.117 retrieving revision 1.118 diff -C2 -d -r1.117 -r1.118 *** mx_functions_core.php 28 Sep 2009 11:24:28 -0000 1.117 --- mx_functions_core.php 8 Oct 2009 17:01:05 -0000 1.118 *************** *** 2207,2210 **** --- 2207,2211 ---- $return = false; + $table = BLOCK_SYSTEM_PARAMETER_TABLE; if ( $this->_parameter_data_exist() ) { *************** *** 2263,2278 **** break; } ! // // Update block data // ! if ( true ) ! { ! $sub_id = $mx_request_vars->is_request('virtual') ? $mx_request_vars->request('virtual', MX_TYPE_INT, 0) : 0; ! // // If standard block // ! $sql = "UPDATE " . BLOCK_SYSTEM_PARAMETER_TABLE . " SET parameter_value = '" . str_replace("\'", "''", $parameter_value) . "', parameter_opt = '$parameter_opt' --- 2264,2279 ---- break; } ! // // Update block data // ! if ($sub_id == $parameter_data['sub_id'] || true) ! { ! $sub_id = $mx_request_vars->is_request('virtual') ? $mx_request_vars->request('virtual', MX_TYPE_INT, 0) : $sub_id; ! // // If standard block // ! $sql = "UPDATE " . $table . " SET parameter_value = '" . str_replace("\'", "''", $parameter_value) . "', parameter_opt = '$parameter_opt' *************** *** 2283,2287 **** else { - /* // // If subblock --- 2284,2287 ---- *************** *** 2289,2294 **** $sql = "INSERT INTO " . BLOCK_SYSTEM_PARAMETER_TABLE . "(block_id, parameter_id, parameter_value, parameter_opt, sub_id) VALUES('$block_id','$parameter_id','" . str_replace("\'", "''", $parameter_value) . "','$parameter_opt', '$sub_id')"; ! */ ! } if( !($db->sql_query($sql)) ) --- 2289,2293 ---- $sql = "INSERT INTO " . BLOCK_SYSTEM_PARAMETER_TABLE . "(block_id, parameter_id, parameter_value, parameter_opt, sub_id) VALUES('$block_id','$parameter_id','" . str_replace("\'", "''", $parameter_value) . "','$parameter_opt', '$sub_id')"; ! } if( !($db->sql_query($sql)) ) *************** *** 2300,2304 **** // Update block itself // ! if( $sub_id == 0 ) { $block_time = time(); --- 2299,2303 ---- // Update block itself // ! if ($sub_id == $parameter_data['sub_id'] || false) { $block_time = time(); Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.113 retrieving revision 1.114 diff -C2 -d -r1.113 -r1.114 *** mx_functions_style.php 23 Jan 2009 10:26:08 -0000 1.113 --- mx_functions_style.php 8 Oct 2009 17:01:06 -0000 1.114 *************** *** 1380,1389 **** // $this->_init_style(); ! // // Load images ! // ! $this->_load_phpbb_images(); ! $this->_load_mxbb_images(); } --- 1380,1403 ---- // $this->_init_style(); ! // // Load images ! // ! switch (PORTAL_BACKEND) ! { ! case 'internal': ! $this->_load_phpbb_images(); ! $this->_load_mxbb_images(); ! break; ! ! case 'phpbb2': ! break; ! ! case 'phpbb3': ! ! $this->_load_phpbb_images(); ! $this->_load_mxbb_images(); ! break; ! } } Index: mx_functions_admincp.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_admincp.php,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** mx_functions_admincp.php 18 Jun 2009 21:38:58 -0000 1.66 --- mx_functions_admincp.php 8 Oct 2009 17:01:05 -0000 1.67 *************** *** 3149,3153 **** * * This function indexes search words for textblocks. ! * * @access private * @param string $mode single or ? --- 3149,3153 ---- * * This function indexes search words for textblocks. ! * Old outdated function need to be fixed * @access private * @param string $mode single or ? *************** *** 3299,3303 **** if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql); } $db->sql_freeresult($result); --- 3299,3303 ---- if ( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql); } $db->sql_freeresult($result); *************** *** 3317,3321 **** if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not insert new word matches', '', __LINE__, __FILE__, $sql); } $db->sql_freeresult($result); --- 3317,3321 ---- if ( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not insert new word matches', '', __LINE__, __FILE__, $sql); } $db->sql_freeresult($result); |
|
From: FlorinCB <ory...@us...> - 2009-09-30 16:00:46
|
Update of /cvsroot/mxbb/mx_errordocs/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv26000 Modified Files: common.php Log Message: 1st time added Index: common.php =================================================================== RCS file: /cvsroot/mxbb/mx_errordocs/includes/common.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** common.php 3 Jun 2008 20:07:37 -0000 1.8 --- common.php 30 Sep 2009 16:00:27 -0000 1.9 *************** *** 20,23 **** --- 20,25 ---- define('ERRORDOCS_LOG_TABLE', $mx_table_prefix.'errordocs_log'); + global $mx_user; + // // Base template |
|
From: FlorinCB <ory...@us...> - 2009-09-30 14:29:17
|
Update of /cvsroot/mxbb/core/language/lang_romanian_ansi In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv13963/lang_romanian_ansi Log Message: Directory /cvsroot/mxbb/core/language/lang_romanian_ansi added to the repository |
|
From: FlorinCB <ory...@us...> - 2009-09-30 14:28:51
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb2/language/lang_romanian_ansi/email In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv13896/email Log Message: Directory /cvsroot/mxbb/core/includes/shared/phpbb2/language/lang_romanian_ansi/email added to the repository |
|
From: FlorinCB <ory...@us...> - 2009-09-30 14:28:37
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb2/language/lang_romanian_ansi In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv13886/lang_romanian_ansi Log Message: Directory /cvsroot/mxbb/core/includes/shared/phpbb2/language/lang_romanian_ansi added to the repository |