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: Jon O. <jon...@us...> - 2008-06-14 20:41:35
|
Update of /cvsroot/mxbb/core/modules/mx_users/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9925 Modified Files: lang_admin.php Log Message: mx_users, now handles admin users. Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_users/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 18:53:13 -0000 1.2 --- lang_admin.php 14 Jun 2008 20:41:32 -0000 1.3 *************** *** 45,48 **** --- 45,49 ---- $lang['User_special_explain'] = 'These fields are not able to be modified by the users. Here you can set their status and other options that are not given to users.'; + $lang['MX_user_is_admin'] = 'User is site admin'; // |
|
From: Jon O. <jon...@us...> - 2008-06-14 20:41:25
|
Update of /cvsroot/mxbb/core/modules/mx_users/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9902 Modified Files: admin_users.php Log Message: mx_users, now handles admin users. Index: admin_users.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_users/admin/admin_users.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** admin_users.php 9 Feb 2008 12:51:06 -0000 1.6 --- admin_users.php 14 Jun 2008 20:41:20 -0000 1.7 *************** *** 279,282 **** --- 279,283 ---- $user_status = $mx_request_vars->post('user_status', MX_TYPE_INT, 0); + $user_admin = $mx_request_vars->post('user_admin', MX_TYPE_INT, 0); } *************** *** 372,382 **** ! $sql = "INSERT INTO " . USERS_TABLE . " (user_id, username, user_password, user_email, user_active, user_regdate) ! VALUES ($user_id, $username_sql_add, $passwd_sql_add, $email_sql, $user_status, '".time()."')"; } else { $sql = "UPDATE " . USERS_TABLE . " ! SET " . $username_sql . $passwd_sql . "user_email = $email_sql, user_active = $user_status" . " WHERE user_id = $user_id"; } --- 373,383 ---- ! $sql = "INSERT INTO " . USERS_TABLE . " (user_id, username, user_password, user_email, user_active, user_regdate, user_level) ! VALUES ($user_id, $username_sql_add, $passwd_sql_add, $email_sql, $user_status, '".time()."', $user_admin)"; } else { $sql = "UPDATE " . USERS_TABLE . " ! SET " . $username_sql . $passwd_sql . "user_email = $email_sql, user_active = $user_status, user_level = $user_admin" . " WHERE user_id = $user_id"; } *************** *** 488,491 **** --- 489,493 ---- $password_confirm = ''; $user_status = $this_userdata['user_active']; + $user_admin = $this_userdata['user_level']; } *************** *** 503,506 **** --- 505,510 ---- 'USER_ACTIVE_YES' => ($user_status) ? 'checked="checked"' : '', 'USER_ACTIVE_NO' => (!$user_status) ? 'checked="checked"' : '', + 'USER_ADMIN_YES' => ($user_admin) ? 'checked="checked"' : '', + 'USER_ADMIN_NO' => (!$user_admin) ? 'checked="checked"' : '', 'L_USERNAME' => $lang['Username'], *************** *** 519,522 **** --- 523,527 ---- 'L_SPECIAL_EXPLAIN' => $lang['User_special_explain'], 'L_USER_ACTIVE' => $lang['User_status'], + 'L_USER_ADMIN' => $lang['MX_user_is_admin'], 'L_EMAIL_ADDRESS' => $lang['Email_address'], |
|
From: Jon O. <jon...@us...> - 2008-06-14 20:41:11
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9850 Modified Files: mx_functions_phpbb.php Log Message: mx_users, now handles admin users. Index: mx_functions_phpbb.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_phpbb.php,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** mx_functions_phpbb.php 10 Jun 2008 03:35:19 -0000 1.60 --- mx_functions_phpbb.php 14 Jun 2008 20:41:08 -0000 1.61 *************** *** 303,307 **** $mx_user->init($user_ip, $page_id, false); } ! if(empty($theme)) { --- 303,307 ---- $mx_user->init($user_ip, $page_id, false); } ! if(empty($theme)) { *************** *** 705,714 **** */ ! //Will this make troble if it's correct? if ( !empty($_SID) && !preg_match('#sid=#', $url) ) { $url .= ( (strpos($url, '?') === false) ? '?' : (( $non_html_amp ) ? '&' : '&' ) ) . $_SID; } ! if ( !empty($SID) && !preg_match('#sid=#', $url) ) { --- 705,714 ---- */ ! //Will this make troble if it's correct? if ( !empty($_SID) && !preg_match('#sid=#', $url) ) { $url .= ( (strpos($url, '?') === false) ? '?' : (( $non_html_amp ) ? '&' : '&' ) ) . $_SID; } ! if ( !empty($SID) && !preg_match('#sid=#', $url) ) { *************** *** 1033,1037 **** WHERE "; $sql .= ( ( is_integer($user) ) ? "user_id = $user" : "username = '" . str_replace("\'", "''", $user) . "'" ) . " AND user_id <> " . ANONYMOUS; ! if ( !($result = $db->sql_query($sql, 600)) ) { message_die(GENERAL_ERROR, 'Tried obtaining data for a non-existent user', '', __LINE__, __FILE__, $sql); --- 1033,1037 ---- WHERE "; $sql .= ( ( is_integer($user) ) ? "user_id = $user" : "username = '" . str_replace("\'", "''", $user) . "'" ) . " AND user_id <> " . ANONYMOUS; ! if ( !($result = $db->sql_query($sql, 120)) ) { message_die(GENERAL_ERROR, 'Tried obtaining data for a non-existent user', '', __LINE__, __FILE__, $sql); |
|
From: Jon O. <jon...@us...> - 2008-06-14 20:07:34
|
Update of /cvsroot/mxbb/core/templates/_core/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27436 Modified Files: logo.gif Log Message: New temp logo for adminCP Index: logo.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/_core/images/logo.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsCxWhAy and /tmp/cvsO70wHU differ |
|
From: Jon O. <jon...@us...> - 2008-06-14 20:07:17
|
Update of /cvsroot/mxbb/core/templates/subSilver/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27023 Modified Files: Tag: core28x logo.gif Log Message: New temp logo Updated some lang keys mxBB -> MXP php4 Index: logo.gif =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/images/Attic/logo.gif,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 Binary files /tmp/cvs9nZjNg and /tmp/cvsMKzV6w differ |
|
From: Jon O. <jon...@us...> - 2008-06-14 20:07:14
|
Update of /cvsroot/mxbb/core/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26989 Modified Files: Tag: core28x lang_admin.php lang_main.php Log Message: New temp logo Updated some lang keys mxBB -> MXP php4 Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_english/lang_main.php,v retrieving revision 1.36.2.2 retrieving revision 1.36.2.3 diff -C2 -d -r1.36.2.2 -r1.36.2.3 *** lang_main.php 3 Jun 2008 21:01:24 -0000 1.36.2.2 --- lang_main.php 14 Jun 2008 20:06:47 -0000 1.36.2.3 *************** *** 100,106 **** // Copyrights page // ! $lang['mx_about_title'] = 'About mxBB Portal'; ! $lang['mx_copy_title'] = 'mxBB Portal Information'; ! $lang['mx_copy_modules_title'] = 'Installed mxBB Portal Modules'; $lang['mx_copy_template_title'] = 'About the style'; $lang['mx_copy_translation_title'] = 'About the translation'; --- 100,106 ---- // Copyrights page // ! $lang['mx_about_title'] = 'About MX-Publisher'; ! $lang['mx_copy_title'] = 'MX-Publisher Information'; ! $lang['mx_copy_modules_title'] = 'Installed MX-Publisher Modules'; $lang['mx_copy_template_title'] = 'About the style'; $lang['mx_copy_translation_title'] = 'About the translation'; *************** *** 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>'; // Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_english/lang_admin.php,v retrieving revision 1.77.2.5 retrieving revision 1.77.2.6 diff -C2 -d -r1.77.2.5 -r1.77.2.6 *** lang_admin.php 3 Jun 2008 21:01:24 -0000 1.77.2.5 --- lang_admin.php 14 Jun 2008 20:06:47 -0000 1.77.2.6 *************** *** 46,51 **** // Index // ! $lang['Welcome_mxBB'] = 'Welcome to mxBB'; ! $lang['Admin_intro_mxBB'] = 'Thank you for choosing mxBB Portal as your portal/cms solution and phpBB as your forum solution. This screen will give you a quick overview of all the various statistics of your site. You can get back to this page by clicking on the <span style="text-decoration: underline;">Admin Index</span> link in the left panel. To return to the index of your board, click the logo that is also in the left panel. The other links on the left hand side of this screen will allow you to control every aspect of your portal and forum experience. Each screen will have instructions on how to use the provided tools.'; // --- 46,51 ---- // Index // ! $lang['Welcome_mxBB'] = 'Welcome to MXP'; ! $lang['Admin_intro_mxBB'] = 'Thank you for choosing MX-Publisher as your portal/cms solution and phpBB as your forum solution. This screen will give you a quick overview of all the various statistics of your site. You can get back to this page by clicking on the <span style="text-decoration: underline;">Admin Index</span> link in the left panel. To return to the index of your board, click the logo that is also in the left panel. The other links on the left hand side of this screen will allow you to control every aspect of your portal and forum experience. Each screen will have instructions on how to use the provided tools.'; // *************** *** 102,106 **** $lang['Portal_admin_explain'] = 'Use this form to customize your portal'; $lang['Portal_General_Config'] = 'Portal Configuration'; ! $lang['Portal_General_Config_explain'] = 'Use this form to manage the main settings of your mxBB portal.'; $lang['Portal_General_settings'] = 'General Settings'; $lang['Portal_Style_settings'] = 'Style Settings'; --- 102,106 ---- $lang['Portal_admin_explain'] = 'Use this form to customize your portal'; $lang['Portal_General_Config'] = 'Portal Configuration'; ! $lang['Portal_General_Config_explain'] = 'Use this form to manage the main settings of your MX-Publisher system.'; $lang['Portal_General_settings'] = 'General Settings'; $lang['Portal_Style_settings'] = 'Style Settings'; *************** *** 109,113 **** $lang['Portal_Name'] = 'Portal Name:'; $lang['Portal_PHPBB_Url'] = 'URL to your phpBB installation:'; ! $lang['Portal_Url'] = 'URL to mxBB Portal:'; $lang['Portal_Config_updated'] = 'Portal Configuration Updated Successfully'; $lang['Click_return_portal_config'] = 'Click %sHere%s to return to Portal Configuration'; --- 109,113 ---- $lang['Portal_Name'] = 'Portal Name:'; $lang['Portal_PHPBB_Url'] = 'URL to your phpBB installation:'; ! $lang['Portal_Url'] = 'URL to MXP Portal:'; $lang['Portal_Config_updated'] = 'Portal Configuration Updated Successfully'; $lang['Click_return_portal_config'] = 'Click %sHere%s to return to Portal Configuration'; *************** *** 116,126 **** $lang['PHPBB_script_path'] = 'phpBB Script Path:'; $lang['PHPBB_server_name'] = 'phpBB Domain (server_name):'; ! $lang['MX_Portal'] = 'mxBB Portal'; ! $lang['MX_Modules'] = 'mxBB Modules'; $lang['Phpbb'] = 'phpBB'; $lang['Top_phpbb_links'] = 'phpBB Statistics in Header (default value)'; $lang['Top_phpbb_links_explain'] = '- Links to new, unread posts'; ! $lang['Portal_version'] = 'mxBB Portal Version:'; ! $lang['Mx_use_cache'] = 'Use mxBB Block Cache'; $lang['Mx_use_cache_explain'] = 'Block data is cached to individual cache/block_*.xml files. Block cache files are created/updated when blocks are edited.'; $lang['Mx_mod_rewrite'] = 'Use mod_rewrite'; --- 116,126 ---- $lang['PHPBB_script_path'] = 'phpBB Script Path:'; $lang['PHPBB_server_name'] = 'phpBB Domain (server_name):'; ! $lang['MX_Portal'] = 'MXP'; ! $lang['MX_Modules'] = 'Modules'; $lang['Phpbb'] = 'phpBB'; $lang['Top_phpbb_links'] = 'phpBB Statistics in Header (default value)'; $lang['Top_phpbb_links_explain'] = '- Links to new, unread posts'; ! $lang['Portal_version'] = 'MXP Portal Version:'; ! $lang['Mx_use_cache'] = 'Use MXP Block Cache'; $lang['Mx_use_cache_explain'] = 'Block data is cached to individual cache/block_*.xml files. Block cache files are created/updated when blocks are edited.'; $lang['Mx_mod_rewrite'] = 'Use mod_rewrite'; *************** *** 381,388 **** // Cache // ! $lang['Cache_dir_write_protect'] = 'Your cache directory is write-protected. mxBB is unable to generate the cache file. Please make your cache directory writeable to continue.'; $lang['Cache_generate'] = 'Your cache files have been generated.'; $lang['Cache_submit'] = 'Generate the cache file?'; ! $lang['Cache_explain'] = 'With this option you can generate all cache files (XMLs files) at once for all portal blocks. These files allow the reduction of the number of database queries needed and improves overall portal performance. <br />Note: the mxBB cache must be enabled (in the Portal General Admin CP) for these files to be used by the system.<br>Further note: the cache files are created on the fly when editing blocks as well.'; $lang['Generate_mx_cache'] = 'Generate Block Cache'; --- 381,388 ---- // Cache // ! $lang['Cache_dir_write_protect'] = 'Your cache directory is write-protected. MX-Publisher is unable to generate the cache file. Please make your cache directory writeable to continue.'; $lang['Cache_generate'] = 'Your cache files have been generated.'; $lang['Cache_submit'] = 'Generate the cache file?'; ! $lang['Cache_explain'] = 'With this option you can generate all cache files (XMLs files) at once for all portal blocks. These files allow the reduction of the number of database queries needed and improves overall portal performance. <br />Note: the MX-Publisher cache must be enabled (in the Portal General Admin CP) for these files to be used by the system.<br>Further note: the cache files are created on the fly when editing blocks as well.'; $lang['Generate_mx_cache'] = 'Generate Block Cache'; *************** *** 505,513 **** // Version Checker // ! $lang['mxBB_Version_up_to_date'] = 'Your mxBB installation is up to date. No updates are available for your version of mxBB.'; ! $lang['mxBB_Version_outdated'] = 'Your mxBB installation does <b>not</b> seem to be up to date. Updates are available for your version of mxBB. Please visit <a href="http://www.mx-publisher.com/index.php?page=4&action=file&file_id=2" target="_new">the mxBB Core package download</a> to obtain the latest version.'; ! $lang['mxBB_Latest_version_info'] = 'The latest available version is <b>mxBB %s</b>. '; ! $lang['mxBB_Current_version_info'] = 'You are running <b>mxBB %s</b>.'; ! $lang['mxBB_Mailing_list_subscribe_reminder'] = 'For the latest information on news and updates to mxBB, why not <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">subscribe to our mailing list</a>?'; // --- 505,513 ---- // Version Checker // ! $lang['mxBB_Version_up_to_date'] = 'Your MX-Publisher installation is up to date. No updates are available for your version of MX-Publisher.'; ! $lang['mxBB_Version_outdated'] = 'Your MX-Publisher installation does <b>not</b> seem to be up to date. Updates are available for your version of MX-Publisher. Please visit <a href="http://www.mx-publisher.com/index.php?page=4&action=file&file_id=2" target="_new">the MX-Publisher Core package download</a> to obtain the latest version.'; ! $lang['mxBB_Latest_version_info'] = 'The latest available version is <b>MX-Publisher %s</b>. '; ! $lang['mxBB_Current_version_info'] = 'You are running <b>MX-Publisher %s</b>.'; ! $lang['mxBB_Mailing_list_subscribe_reminder'] = 'For the latest information on news and updates to MX-Publisher, why not <a href="http://lists.sourceforge.net/lists/listinfo/mxbb-news" target="_new">subscribe to our mailing list</a>?'; // |
|
From: Jon O. <jon...@us...> - 2008-06-14 20:06:50
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb2/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26944 Modified Files: Tag: core28x functions.php Log Message: New temp logo Updated some lang keys mxBB -> MXP php4 Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb2/includes/functions.php,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** functions.php 17 Feb 2008 10:37:27 -0000 1.1.2.2 --- functions.php 14 Jun 2008 20:06:34 -0000 1.1.2.3 *************** *** 85,89 **** { $username = substr(htmlspecialchars(str_replace("\'", "'", trim($username))), 0, 25); ! $username = self::phpbb_rtrim($username, "\\"); $username = str_replace("'", "\'", $username); --- 85,90 ---- { $username = substr(htmlspecialchars(str_replace("\'", "'", trim($username))), 0, 25); ! //$username = self::phpbb_rtrim($username, "\\"); ! $username = phpBB2::phpbb_rtrim($username, "\\"); // php4 $username = str_replace("'", "\'", $username); *************** *** 186,190 **** if (!is_numeric($user) || $force_str) { ! $user = self::phpbb_clean_username($user); } else --- 187,192 ---- if (!is_numeric($user) || $force_str) { ! //$user = self::phpbb_clean_username($user); ! $user = phpBB2::phpbb_clean_username($user); // php4 } else |
|
From: Jon O. <jon...@us...> - 2008-06-14 19:18:00
|
Update of /cvsroot/mxbb/core/modules/mx_users/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv4653 Modified Files: admin_groupcp.php Log Message: topics_per_page not defined in internal mode i'm defaulting to 15 for now Index: admin_groupcp.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_users/admin/admin_groupcp.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** admin_groupcp.php 9 Feb 2008 12:51:07 -0000 1.4 --- admin_groupcp.php 14 Jun 2008 19:17:56 -0000 1.5 *************** *** 46,50 **** } ! $board_config['topics_per_page'] = 10; // ------------------------- --- 46,50 ---- } ! $board_config['topics_per_page'] = isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15; // ------------------------- |
|
From: Jon O. <jon...@us...> - 2008-06-14 19:17:46
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv4594 Modified Files: mx_search.php Log Message: topics_per_page not defined in internal mode i'm defaulting to 15 for now Index: mx_search.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_search.php,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** mx_search.php 22 Feb 2008 23:04:25 -0000 1.25 --- mx_search.php 14 Jun 2008 19:17:43 -0000 1.26 *************** *** 83,87 **** $start = $mx_request_vars->get('start', MX_TYPE_INT, 0); ! $per_page = $board_config['topics_per_page']; switch ( $mode ) --- 83,87 ---- $start = $mx_request_vars->get('start', MX_TYPE_INT, 0); ! $per_page = isset($board_config['topics_per_page']) ? $board_config['topics_per_page'] : 15; switch ( $mode ) |
|
From: Jon O. <jon...@us...> - 2008-06-14 19:17:33
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb2/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv4558 Modified Files: functions.php Log Message: topics_per_page not defined in internal mode i'm defaulting to 15 for now Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb2/includes/functions.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** functions.php 9 Sep 2007 16:51:51 -0000 1.1 --- functions.php 14 Jun 2008 19:17:28 -0000 1.2 *************** *** 85,89 **** { $username = substr(htmlspecialchars(str_replace("\'", "'", trim($username))), 0, 25); ! $username = self::phpbb_rtrim($username, "\\"); $username = str_replace("'", "\'", $username); --- 85,90 ---- { $username = substr(htmlspecialchars(str_replace("\'", "'", trim($username))), 0, 25); ! //$username = self::phpbb_rtrim($username, "\\"); ! $username = phpBB2::phpbb_rtrim($username, "\\"); // php4 $username = str_replace("'", "\'", $username); *************** *** 186,190 **** if (!is_numeric($user) || $force_str) { ! $user = self::phpbb_clean_username($user); } else --- 187,192 ---- if (!is_numeric($user) || $force_str) { ! //$user = self::phpbb_clean_username($user); ! $user = phpBB2::phpbb_clean_username($user); // php4 } else |
|
From: FlorinCB <ory...@us...> - 2008-06-13 04:40:41
|
Update of /cvsroot/mxbb/mx_music/music_box/language/lang_dutch In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7766/music_box/language/lang_dutch Added Files: lang_admin.php lang_admin_music.php lang_main_music.php Log Message: new lang files --- NEW FILE: lang_main_music.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: lang_main_music.php,v 1.1 2008/06/13 04:40:27 orynider Exp $ * @copyright (c) 2003 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /* Translation: Dutch Rev date: February 20, 2007 Copyright: (C) 2007 mxBB Development Team Translator: Superaktieboy < sup...@ho... > */ // // Music Online // $lang['Music'] = 'Media Center'; // // Music Index // $lang['Music_Online'] = 'Muziek Online'; $lang['Songs'] = 'Liedjes'; $lang['Cat_Views'] = 'Board Luister'; $lang['Last_Song'] = 'Laatste liedjes'; $lang['Public_Categories'] = 'Publieke Categories'; $lang['No_Songs'] = 'Geen liedjes'; $lang['Top_Songs'] = 'Top liedjes'; $lang['Song_Limit'] = 'Liedjes limiet'; $lang['Nav_Separator'] = ' » '; $lang['View'] = 'Luister'; $lang['Singer'] = 'Zanger'; // // Category View // $lang['Category_not_exist'] = 'Dit categorie bestaat niet'; $lang['Upload_Song'] = 'Upload liedje'; $lang['Song_Title'] = 'Tiel liedje'; $lang['Music_upload_can'] = 'U <b>kunt</b> nieuwe liedjes uploaden in dit categorie'; $lang['Music_upload_cannot'] = 'U <b>kunt geen</b> nieuwe liedjes uploaden in dit categorie'; $lang['Music_rate_can'] = 'U <b>kunt</b> op liedjes stemmen in dit categorie'; $lang['Music_rate_cannot'] = 'U <b>kunt niet</b> op liedjes stemmen in dit categorie'; $lang['Music_comment_can'] = 'U <b>kunt</b> commentaar posten op deze liedjes in dit categorie'; $lang['Music_comment_cannot'] = 'U <b>kunt geen</b> commentaar posten op de liedjes in dit categorie'; $lang['Music_edit_can'] = 'U <b>kunt</b> uw liedjes bewerken in dit categorie'; $lang['Music_edit_cannot'] = 'U <b>kunt</b> uw liedjes <b>niet</b> bewerken in dit categorie'; $lang['Music_delete_can'] = 'U <b>kunt</b> uw liedjes en uw commentaren verwijderen in dit categorie'; $lang['Music_delete_cannot'] = 'U <b>kunt</b> uw liedjes en uw commentaren <b>niet</b> verwijderen in dit categorie'; $lang['Music_moderate_can'] = 'U <b>kunt</b> dit categorie %smoderaten%s'; $lang['Edit_song'] = 'Bewerk'; $lang['Delete_song'] = 'Verwijder'; $lang['Rating'] = 'Stemmen'; $lang['Comments'] = 'Commentaren'; $lang['Download'] = 'Download'; $lang['New_Comment'] = 'Nieuwe Commentaar'; $lang['Not_rated'] = '<i>Niet beoordeelt</i>'; // // Upload // $lang['Song_url'] = 'URL van liedjes'; $lang['Song_Desc'] = 'Lyric van liedjes'; $lang['Plain_text_only'] = 'Alleen duidelijke tekst'; $lang['Max_length'] = 'Max lengte (bytes)'; $lang['Upload_song_from_machine'] = 'Upload liedje van uw PC'; $lang['Upload_to_Category'] = 'Upload naar Categorie'; $lang['Upload_no_title'] = 'U vergeet de titel van het leidje'; $lang['Upload_no_file'] = 'U moet een pad naar het liedje invullen'; $lang['Upload_both_file'] = 'U kunt alleen 1 of twee soorten manieren uploaden: uploaden of een link plaatsen'; $lang['Desc_too_long'] = 'Lyric van liedjes is te land'; $lang['Max_file_size'] = 'Maximum bestandsgrootte (bytes)'; $lang['Allowed_file'] = 'Deze bestanden zijn toegestaan'; $lang['Music_reached_quota'] = 'Deze categorie heeft de limiet van liedjes bereikt. U kunt geen liedjes meer uploaden. Cantacteerd de admin voor meer informatie a.u.b'; $lang['User_reached_songs_quota'] = 'U hebt de limiet van liedjes bereikt. U kunt geen liedjes meer uploaden. Cantacteerd de admin voor meer informatie a.u.b'; $lang['Bad_upload_file_size'] = 'Uw geuploadde bestand is te groot of vervalst'; $lang['Not_allowed_file_type'] = 'Uw type bestand is niet toegestaan'; $lang['Missed_song_title'] = 'U hebt de naam van het liedjes vergeten'; $lang['Missed_song_url'] = 'U hebt de URL van het liedjes vergeten'; $lang['Music_upload_successful'] = 'Uw liedje is succesvol geupload'; $lang['Music_upload_need_approval'] = 'Uw liedje is succesvol geupload.<br /><br />Maar de liedjes goedkeuring is aangezet dus uw liedjes moet door een administrator of een moderator goed gekeurd worden voordat het gepost word'; $lang['Click_return_category'] = 'Klik %shier%s om terug te keren naar de Categorie'; $lang['Click_return_music_index'] = 'Klik %shier%s om terug te keren naar het Muziek Index'; // View song $lang['Song_not_exist'] = 'Dit liedje bestaat niet'; // Edit song $lang['Edit_Song_Info'] = 'Bewerk de informatie liedje'; $lang['Songs_updated_successfully'] = 'Uw informatie van de liedje is succesvol geupdate'; // Delete song $lang['Music_delete_confirm'] = 'Weet u zeker dat u dit liedje(s) wil verwijderen?'; $lang['Songs_deleted_successfully'] = 'De liedje(s) zijn succesvol verwijdert'; // // ModCP // $lang['Approval'] = 'Goedkeuring'; $lang['Approve'] = 'Goedkeuren'; $lang['Unapprove'] = 'Niet goedkeuren'; $lang['Status'] = 'Status'; $lang['Locked'] = 'Gesloten'; $lang['Not_approved'] = 'Niet goedgekeurd'; $lang['Approved'] = 'Goedgekeurd'; $lang['Move_to_Category'] = 'Verplaats naar categorie'; $lang['Songs_moved_successfully'] = 'U liedje(s) is succesvol verplaatst'; $lang['Songs_locked_successfully'] = 'U liedje(s) is succesvol gesloten'; $lang['Songs_unlocked_successfully'] = 'U liedje(s) is succesvol geopend'; $lang['Songs_approved_successfully'] = 'U liedje(s) is succesvol goedgekeurd'; $lang['Songs_unapproved_successfully'] = 'U liedje(s) is succesvol slecht goedgekeurd'; // // Rate // $lang['Current_Rating'] = 'Momentele beoordelingen'; $lang['Please_Rate_It'] = 'Beoordeel a.u.b'; $lang['Already_rated'] = 'U hebt deze liedje al beoordeeld'; $lang['Music_rate_successfully'] = 'Uw liedje is succesvol beoordeeld'; // // Comment // $lang['Comment_no_text'] = 'Plaats uw commentaar'; $lang['Comment_too_long'] = 'Uw commentaar is te lang'; $lang['Comment_delete_confirm'] = 'Weet u zeker dat u deze commentaar wilt verwijderen?'; $lang['Song_Locked'] = 'Sorry, Deze liedje is gesloten. Dus u kunt geen commentaar meer plaatsen.'; // // Song Image // $lang['Song_image'] = 'Song Image'; $lang['Song_image_desc'] = 'The Image of this song<br />(such as CD Cover, Artist Photo...)'; $lang['No_image'] = 'No Image'; $lang['Upload_image'] = 'Upload Image from your PC'; $lang['Not_allowed_image_type'] = 'Your uploaded image type is not allowed'; $lang['Bad_upload_image_size'] = 'Bad upload image size'; $lang['Upload_image_size_too_big'] = 'Your uploaded image size is too big'; // // Search Song // $lang['Search_song'] = 'Search song'; ?> --- NEW FILE: lang_admin_music.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: lang_admin_music.php,v 1.1 2008/06/13 04:40:27 orynider Exp $ * @copyright (c) 2003 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /* Translation: Dutch Rev date: February 20, 2007 Copyright: (C) 2007 mxBB Development Team Translator: Superaktieboy < sup...@ho... > */ // // Configuratie // $lang['Music_config'] = 'Muziek Configuratie'; $lang['Music_config_explain'] = 'U kunt hier de generale instellingen van uw Online Muziek veranderen'; $lang['Music_config_updated'] = 'Muziek Configuratie is succesvol ge-update'; $lang['Click_return_music_config'] = 'Klik %sHier%s om terug te keren naar Muziek Configuratie'; $lang['Max_songs'] = 'Maximum Liedjes voor elke categorie (-1 = Onbeperkt)'; $lang['User_songs_limit'] = 'Liedjes grens per categorie voor elke gebruiker (-1 = Onbeperkt)'; $lang['Moderator_songs_limit'] = 'Liedjes grens per categorie voor elke moderator (-1 = Onbeperkt)'; $lang['Songs_Approval'] = 'Liedjes goedkeuren'; $lang['Rows_per_page'] = 'Nummer van rijen'; $lang['Cols_per_page'] = 'Nummer van kolommen'; $lang['Top'] = 'Nummer van liedjes op Top Hit Lijst'; $lang['Song_Desc_Max_Length'] = 'Liedjes Lyrisch/Commentaar Maximale Lengte (bytes)'; $lang['Hotlink_prevent'] = 'Hotlink voorkomen'; $lang['Hotlink_allowed'] = 'Geaccepteerde domains voor hotlink (Scheiden met komma)'; $lang['Rate_system'] = 'Stem systeem aanzetten'; $lang['Rate_Scale'] =' Stem schaal'; $lang['Comment_system'] = 'Commentaar systeem aanzetten'; $lang['Download_system'] = 'Download systeem aanzetten'; $lang['Extra_Settings'] = 'Extra instellingen'; $lang['Default_Sort_Method'] = 'Standaard sorteer methode'; $lang['Default_Sort_Order'] = 'Standaard sorteer order'; // // Categories // $lang['Music_Categories_Title'] = 'Muziek Categories Control'; $lang['Music_Categories_Explain'] = 'In deze scherm kunt u de categorie\'s bewerken: Maken, wijzigen, verwijderen, sorteren etc.'; $lang['Category_Permissions'] = 'Categorie Permissies'; $lang['Category_Title'] = 'Categorie Titel'; $lang['Category_Desc'] = 'Categorie beschrijving'; $lang['View_level'] = 'Bekijk level'; $lang['Upload_level'] = 'Upload Level'; $lang['Rate_level'] = 'Stem Level'; $lang['Comment_level'] = 'Commentaar Level'; $lang['Edit_level'] = ' Bewerk Level'; $lang['Delete_level'] = 'Verwijder Level'; $lang['New_category_created'] = 'Nieuwe categorie is succesvol gemaakt'; $lang['Click_return_music_category'] = 'Klik %sHier%s om terug te keren naar de Muziek Categories Management'; $lang['Category_updated'] = 'Deze categorie is succesvol ge-update'; $lang['Delete_Category'] = 'Verwijder categorie'; $lang['Delete_Category_Explain'] = 'In de formulier hieronder kunt u categorie\'s verwijderen, bepalen waar u het wil zetten om liedjes op te zetten'; $lang['Delete_all_songs'] = 'Verwijder alle liedjes'; $lang['Category_deleted'] = 'Deze categorie is succesvol verwijderd'; $lang['Category_changed_order'] = 'Deze categorie is succesvol gewijzigd'; // // Permissions // $lang['Music_Auth_Title'] = 'Muziek Permissies'; $lang['Music_Auth_Explain'] = 'Hier kunt u kiezen welke groep(en) de moderators zijn van elke Muziek categorie of allen prive toegang hebben'; $lang['Select_a_Category'] = 'Selecteer een categorie'; $lang['Look_up_Category'] = 'Zoek een categorie'; $lang['Music_Auth_successfully'] = 'Auth is succesvol ge-update'; $lang['Click_return_music_auth'] = 'Klik %sHier%s om terug te keren naar de Muziek Permissies'; $lang['Upload'] = 'Upload'; $lang['Rate'] = 'Stem'; $lang['Comment'] = 'Geef commentaar'; // // Song Image // $lang['Max_image_size'] = 'Max song image size (bytes)'; $lang['Max_image_width'] = 'Max song image width (pixel)'; $lang['Max_image_height'] = 'Max song image height (pixel)'; ?> --- NEW FILE: lang_admin.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: lang_admin.php,v 1.1 2008/06/13 04:40:27 orynider Exp $ * @copyright (c) 2007 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); $lang['display_most_posts'] = "Display most posts"; $lang['display_random_posts'] = "Display random posts"; $lang['display_top_ranked'] = "Display top ranked"; $lang['display_latest_posts'] = "Display latest posts"; $lang['num_of_cols'] = "Num of cols"; $lang['num_of_rows'] = "Num of rows"; $lang['music_config_updated'] = 'Mx MOM Configuration Updated Successfully.'; $lang['Click_return_music_config'] = 'Click %sHere%s to return to mx_music Configuration'; $lang['index'] = 'Mx MOM Album Index'; $lang['mx_music_admin'] = 'mxBB MOM Integration'; $lang['mx_music_admin_explain'] = 'Here, you can do music index and mxBB page mappings.'; $lang['default_pages_title'] = 'mxBB and MOM integration'; $lang['default_pages_title_explain'] = ''; $lang['default_pages_more_title'] = 'More mappings...'; $lang['default_pages_more_title_explain'] = ''; $lang['integration_enabled'] = 'Activate the Integration?'; $lang['integration_enabled_explain'] = 'When the MOM module integration is activated, all mx_music URLs will be directed to mxBB pages. If deactivated, music.php will operate "as usual"'; $lang['integration_enabled_yes'] = 'Activate'; $lang['integration_enabled_no'] = 'Do not integrate music.php'; $lang['override'] = 'Associate music.php and mxBB pages'; $lang['override_explain'] = 'All mx_music urls are redirected to mxBB pages following these settings.'; $lang['override_yes'] = 'Use Block Settings'; $lang['override_no'] = 'Use fixed mappings (see below)'; // // That's all Folks! // ------------------------------------------------- ?> |
|
From: FlorinCB <ory...@us...> - 2008-06-13 04:40:41
|
Update of /cvsroot/mxbb/mx_music/music_box/language/lang_german In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7766/music_box/language/lang_german Added Files: lang_admin.php lang_admin_music.php lang_main_music.php Log Message: new lang files --- NEW FILE: lang_main_music.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: lang_main_music.php,v 1.1 2008/06/13 04:40:29 orynider Exp $ * @copyright (c) 2003 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /* Translation: De (German) Rev date: February 20, 2007 Copyright: (C) 2007 mxBB Development Team Translator: Pepi < phpbbhacks.com > */ // setlocale(LC_ALL, "de"); // // Music Online // $lang['Music'] = 'Media Center'; // // Music Index // $lang['Music_Online'] = 'Music Online'; $lang['Songs'] = 'Songs'; $lang['Cat_Views'] = 'Board Angehört'; $lang['Last_Song'] = 'Letzter Song'; $lang['Public_Categories'] = 'Öffentliche Kategorie'; $lang['No_Songs'] = 'Kein Song'; $lang['Top_Songs'] = 'Top Songs'; $lang['Song_Limit'] = 'Song limit'; $lang['Nav_Separator'] = ' » '; $lang['View'] = 'angehört'; $lang['Singer'] = 'Sänger'; // // Category View // $lang['Category_not_exist'] = 'Diese Kategorie existiert nicht'; $lang['Upload_Song'] = 'Upload Song'; $lang['Song_Title'] = 'Song Titel'; $lang['Music_upload_can'] = 'Du <b>kannst</b> Songs hochladen'; $lang['Music_upload_cannot'] = 'Du <b>kannst keine</b> Songs hochladen'; $lang['Music_rate_can'] = 'Du <b>kannst</b> Songs bewerten'; $lang['Music_rate_cannot'] = 'Du <b>kannst keine</b> Songs bewerten'; $lang['Music_comment_can'] = 'Du <b>kannst</b> Kommentare deiner Songs bearbeiten'; $lang['Music_comment_cannot'] = 'Du <b>kannst keine</b> Kommentare für deine Songs bearbeiten'; $lang['Music_edit_can'] = 'Du <b>kannst</b> Kommentare und Songs bearbeiten'; $lang['Music_edit_cannot'] = 'Du <b>kannst keine</b> Kommentare und Songs bearbeiten'; $lang['Music_delete_can'] = 'Du <b>kannst</b> Kommentare und Songs löschen'; $lang['Music_delete_cannot'] = 'Du <b>kannst keine</b> Kommentare und Songs löschen'; $lang['Music_moderate_can'] = 'Du <b>kannst</b> %sdiese Kategorie moderieren%s'; $lang['Edit_song'] = 'Bearbeiten'; $lang['Delete_song'] = 'Löschen'; $lang['Rating'] = 'bewerte'; $lang['Comments'] = 'Kommentare'; $lang['Download'] = 'Download'; $lang['New_Comment'] = 'Neue Kommentare'; $lang['Not_rated'] = '<i>nicht bewertet</i>'; // // Upload // $lang['Song_url'] = 'Song URL'; $lang['Song_Desc'] = 'Song Text'; $lang['Plain_text_only'] = 'Nur Text'; $lang['Max_length'] = 'Max länge (bytes)'; $lang['Upload_song_from_machine'] = 'Hochladen von deienem PC'; $lang['Upload_to_Category'] = 'Hochladen zur Kategorie'; $lang['Upload_no_title'] = 'Kein Song Tilel angegeben'; $lang['Upload_no_file'] = 'Du musst den Pfad des Songes angeben'; $lang['Upload_both_file'] = 'Due zwischen Hochladen oder Link URL wählen'; $lang['Desc_too_long'] = 'Song Text ist zu lang'; $lang['Max_file_size'] = 'Maximale Dateigröße (bytes)'; $lang['Allowed_file'] = 'Diese Datei(en) sind erlaubt'; $lang['Music_reached_quota'] = 'Quota für die Kategorie erreicht. Du kannst keine mehr hochladen. Bitte kontaktiere den Administrator für weitere Informationen'; $lang['User_reached_songs_quota'] = 'Quota für die Songs erreicht. Du kannst keine mehr hochladen. Bitte kontaktiere den Administrator für weitere Informationen'; $lang['Bad_upload_file_size'] = 'Datei ist zu groß oder beschädigt'; $lang['Not_allowed_file_type'] = 'Dieser Dateityp ist nicht erlaubt'; $lang['Missed_song_title'] = 'Song Tilel nicht eingeben'; $lang['Missed_song_url'] = 'Song URL nicht eingeben'; $lang['Music_upload_successful'] = 'Dein Song wurde erfogreich hochgeladen'; $lang['Music_upload_need_approval'] = 'Song wurde erfolgreich hochgeladen.<br /><br />Dieser Song muss noch durch den Administrator freigeschaltet werden.'; $lang['Click_return_category'] = 'Klicke bitte %shere%s um zur Kategorie zurückzukehren'; $lang['Click_return_music_index'] = 'Klicke bitte %shere%s um zum Musik Index zurückzukehren'; // View song $lang['Song_not_exist'] = 'Der Song existiert nicht'; // Edit song $lang['Edit_Song_Info'] = 'Bearbeite die Song Infomation'; $lang['Songs_updated_successfully'] = 'Deine Song Information sind erfolgreich geändert worden'; // Delete song $lang['Music_delete_confirm'] = 'Bist Du sicher, den Song (die Songs) zu löschen?'; $lang['Songs_deleted_successfully'] = 'Der Song (die Songs) wurde erfolgreich gelöscht'; // // ModCP // $lang['Approval'] = 'Genemigung'; $lang['Approve'] = 'genemigen'; $lang['Unapprove'] = 'Keine Genemigung'; $lang['Status'] = 'Status'; $lang['Locked'] = 'Sperren'; $lang['Not_approved'] = 'Nicht Genemigt'; $lang['Approved'] = 'Genemigt'; $lang['Move_to_Category'] = 'Kategorien verschieben'; $lang['Songs_moved_successfully'] = 'Dein(e) Song(s) wurden erfolgreich verschoben'; $lang['Songs_locked_successfully'] = 'Dein(e) Song(s)) wurden erfolgreich gesperrt'; $lang['Songs_unlocked_successfully'] = 'Dein(e) Song(s) wurden erfolgreich entsperrt'; $lang['Songs_approved_successfully'] = 'Dein(e) Song(s) wurden erfolgreich genemigt'; $lang['Songs_unapproved_successfully'] = 'Dein(e) Song(s) wurden nicht genemigt'; // // Rate // $lang['Current_Rating'] = 'Aktuelle Bewertung'; $lang['Please_Rate_It'] = 'Bitte bewerten'; $lang['Already_rated'] = 'Du hast den Song schon bewertet'; $lang['Music_rate_successfully'] = 'Bewertung erfolgreich abgeben'; // // Comment // $lang['Comment_no_text'] = 'Bitte den Kommetar eintragen'; $lang['Comment_too_long'] = 'Der Eintrag ist zu lang'; $lang['Comment_delete_confirm'] = 'Bist Du sicher daß Du den Kommentar löschen willst?'; $lang['Song_Locked'] = 'Dieser Song ist gesperrt du kannst hier keinen Kommentar abgeben'; // // Song Image // $lang['Song_image'] = 'Song Bild'; $lang['Song_image_desc'] = 'The Image of this song<br />(such as CD Cover, Artist Photo...)'; $lang['No_image'] = 'No Bild'; $lang['Upload_image'] = 'Upload Image from your PC'; $lang['Not_allowed_image_type'] = 'Your uploaded image type is not allowed'; $lang['Bad_upload_image_size'] = 'Bad upload image size'; $lang['Upload_image_size_too_big'] = 'Your uploaded image size is too big'; // // Search Song // $lang['Search_song'] = 'Song Suche'; ?> --- NEW FILE: lang_admin_music.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: lang_admin_music.php,v 1.1 2008/06/13 04:40:29 orynider Exp $ * @copyright (c) 2003 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /* Translation: De (German) Rev date: February 20, 2007 Copyright: (C) 2007 mxBB Development Team Translator: Pepi < phpbbhacks.com > */ // setlocale(LC_ALL, "de"); // // Configuration // $lang['Music_config'] = 'Musik Konfiguration'; $lang['Music_config_explain'] = 'Du kannst hier die allgemeinen Einstellungen von Deinem Musik Album ändern'; $lang['Music_config_updated'] = 'Die Musik-Konfiguration ist erfolgreich geändert worden'; $lang['Click_return_music_config'] = 'Klicke %shier%s um zur Musik Konfiguration zurückzukehren'; $lang['Max_songs'] = 'Max. Anzahl an Song für all Deine Musik Kattegorien (-1 = unendlich)'; $lang['User_songs_limit'] = 'Max. Anzahl der Songs pro Kategorie für jeden Benutzer (-1 = unendlich)'; $lang['Moderator_songs_limit'] = 'Max. Anzahl der Songs je Moderator (-1 = unendlich)'; $lang['Songs_Approval'] = 'Songs-Zulassung'; $lang['Rows_per_page'] = 'Anzahl der Reihen auf der Vorschauseite'; $lang['Cols_per_page'] = 'Anzahl der Spalten auf der Vorschauseite'; $lang['Top'] = 'Number of songs on Top Hit List'; $lang['Song_Desc_Max_Length'] = 'Max. Länge des Songtextes/Beschreibung (bytes)'; $lang['Hotlink_prevent'] = 'Hotlink nicht erlauben'; $lang['Hotlink_allowed'] = 'Erlaubte Domains für Hotlinks (durch Kommata abtrennen))'; $lang['Rate_system'] = 'Aktivieren des Bewertungssystems'; $lang['Rate_Scale'] =' Rating Skala'; $lang['Comment_system'] = 'Aktivieren des Kommentarsystems'; $lang['Download_system'] = 'Aktivieren des Downloadsystems'; $lang['Extra_Settings'] = 'Extra Settings'; $lang['Default_Sort_Method'] = 'Standard-Sortier-Methode'; $lang['Default_Sort_Order'] = 'Standard-Sortier-Reihenfolge'; // // Categories // $lang['Music_Categories_Title'] = 'Musik Kategorie Verwaltung'; $lang['Music_Categories_Explain'] = 'Auf dieser Seite kannst Du die Kategorieeinstellungen vornehmen: Erstellen, bearbeiten, löschen, sortieren etc.'; $lang['Category_Permissions'] = 'Kategorie Erlaubnis'; $lang['Category_Title'] = 'Kategorie Titel'; $lang['Category_Desc'] = 'Kategorie Beschreibung'; $lang['View_level'] = 'Welche Benutzer dürfen sich Songs anschauen'; $lang['Upload_level'] = 'Welche Benutzer dürfen Songs hochladen'; $lang['Rate_level'] = 'Welche Benutzer dürfen Songs bewerten'; $lang['Comment_level'] = 'Welche Benutzer dürfen Songs kommentieren'; $lang['Edit_level'] = ' Welche Benutzer dürfen Songs bearbeiten'; $lang['Delete_level'] = 'Welche Benutzer dürfen Songs löschen'; $lang['New_category_created'] = 'Die Kategorie ist erfolgreich erstellt worden'; $lang['Click_return_music_category'] = 'Klicke %shier%s um zur Musik Kategorie zurückzukehren'; $lang['Category_updated'] = 'Die Kategorie ist erfolgreich geändert worden'; $lang['Delete_Category'] = 'Kategorie löschen'; $lang['Delete_Category_Explain'] = 'Die nachfolgenden Einstellungen erlauben es Dir eine Kategorie zu löschen und zu entscheiden, was mit den darin enthaltenen Songs passieren soll'; $lang['Delete_all_songs'] = 'Lösche alle Songs'; $lang['Category_deleted'] = 'Diese Kategorie wurde erfolgreich gelöscht'; $lang['Category_changed_order'] = 'Die Kategorie ist erfolgreich verschoben worden'; // // Permissions // $lang['Music_Auth_Title'] = 'Musik Zugriffsrechte'; $lang['Music_Auth_Explain'] = 'Hier kannst du auswählen, welche Benutzergruppe(n) Moderator für die jeweilige Musik-Kategorie sein soll(en) oder nur den Privatzugriff regeln.'; $lang['Select_a_Category'] = 'Kategorie auswählen'; $lang['Look_up_Category'] = 'Kategorie suchen'; $lang['Music_Auth_successfully'] = 'Diese Kategorie ist erfolgreich gelöscht worden'; $lang['Click_return_music_auth'] = 'Klicke %shier%s um zur Musik-Verwaltung zurückzukehren'; $lang['Upload'] = 'Hochladen'; $lang['Rate'] = 'Bewerten'; $lang['Comment'] = 'Kommentare'; // // Song Image // $lang['Max_image_size'] = 'Max. Song Bild Größe(bytes)'; $lang['Max_image_width'] = 'Max. Song Bild Breite (pixel)'; $lang['Max_image_height'] = 'Max. Song Bild Höhe (pixel)'; ?> --- NEW FILE: lang_admin.php --- <?php /** * * @package mxBB Portal Module - mx_music * @version $Id: lang_admin.php,v 1.1 2008/06/13 04:40:28 orynider Exp $ * @copyright (c) 2007 [ory...@rd..., OryNider] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // The format of this file is: // // ---> $lang["message"] = "text"; // // Specify your language character encoding... [optional] // // setlocale(LC_ALL, "en"); $lang['display_most_posts'] = "Display most posts"; $lang['display_random_posts'] = "Display random posts"; $lang['display_top_ranked'] = "Display top ranked"; $lang['display_latest_posts'] = "Display latest posts"; $lang['num_of_cols'] = "Num of cols"; $lang['num_of_rows'] = "Num of rows"; $lang['music_config_updated'] = 'Mx MOM Configuration Updated Successfully.'; $lang['Click_return_music_config'] = 'Click %sHere%s to return to mx_music Configuration'; $lang['index'] = 'Mx MOM Album Index'; $lang['mx_music_admin'] = 'mxBB MOM Integration'; $lang['mx_music_admin_explain'] = 'Here, you can do music index and mxBB page mappings.'; $lang['default_pages_title'] = 'mxBB and MOM integration'; $lang['default_pages_title_explain'] = ''; $lang['default_pages_more_title'] = 'More mappings...'; $lang['default_pages_more_title_explain'] = ''; $lang['integration_enabled'] = 'Activate the Integration?'; $lang['integration_enabled_explain'] = 'When the MOM module integration is activated, all mx_music URLs will be directed to mxBB pages. If deactivated, music.php will operate "as usual"'; $lang['integration_enabled_yes'] = 'Activate'; $lang['integration_enabled_no'] = 'Do not integrate music.php'; $lang['override'] = 'Associate music.php and mxBB pages'; $lang['override_explain'] = 'All mx_music urls are redirected to mxBB pages following these settings.'; $lang['override_yes'] = 'Use Block Settings'; $lang['override_no'] = 'Use fixed mappings (see below)'; // // That's all Folks! // ------------------------------------------------- ?> |
|
From: FlorinCB <ory...@us...> - 2008-06-13 04:40:41
|
Update of /cvsroot/mxbb/mx_music/contrib In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7766/contrib Added Files: chinese.zip vietnamese.zip Log Message: new lang files --- NEW FILE: vietnamese.zip --- (This appears to be a binary file; contents omitted.) --- NEW FILE: chinese.zip --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-06-13 04:37:37
|
Update of /cvsroot/mxbb/mx_music/music_box/language/lang_dutch In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6442/lang_dutch Log Message: Directory /cvsroot/mxbb/mx_music/music_box/language/lang_dutch added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-06-13 04:37:37
|
Update of /cvsroot/mxbb/mx_music/music_box/language/lang_german In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6442/lang_german Log Message: Directory /cvsroot/mxbb/mx_music/music_box/language/lang_german added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-06-13 03:58:27
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19528 Modified Files: forum_hack.php Log Message: I don't undested how the activation link was just partialy fixed. Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** forum_hack.php 10 Jun 2008 02:16:16 -0000 1.57 --- forum_hack.php 13 Jun 2008 03:58:22 -0000 1.58 *************** *** 1876,1880 **** $code = str_replace('$board_config[\'avatar_gallery_path\']', '\''.$phpbb_root_path.'\' . $board_config[\'avatar_gallery_path\']', $code); $code = str_replace('$board_config[\'avatar_path\']', '\''.$phpbb_root_path.'\' . $board_config[\'avatar_path\']', $code); ! break; case 'includes/usercp_avatar': --- 1876,1883 ---- $code = str_replace('$board_config[\'avatar_gallery_path\']', '\''.$phpbb_root_path.'\' . $board_config[\'avatar_gallery_path\']', $code); $code = str_replace('$board_config[\'avatar_path\']', '\''.$phpbb_root_path.'\' . $board_config[\'avatar_path\']', $code); ! ! //This should fix the url when users try to activate the accont ! $code = str_replace('$server_url . \'?mode=activate&\'', 'PHPBB_URL .\'profile.\'.$phpEx.\'?mode=activate&\'', $code); ! break; case 'includes/usercp_avatar': |
|
From: FlorinCB <ory...@us...> - 2008-06-12 18:48:27
|
Update of /cvsroot/mxbb/mx_blogs/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10738 Added Files: _core.cfg Log Message: rename --- NEW FILE: _core.cfg --- <?php /** * * @package mxBB Portal Module - mx_blogs * @version $Id: _core.cfg,v 1.1 2008/06/12 18:47:16 orynider Exp $ * @copyright (c) 2002-2006 mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // ** Configuration file for subSilver template ** // // ** copyright (C) 2001 The phpBB Group ** // ** Created by subBlue design ** // ** www.subBlue.com ** // // *** subSilver dev. forum: www.subSky.com/phpBB2/ ** // // $Id: _core.cfg,v 1.1 2008/06/12 18:47:16 orynider Exp $ // // Please note that to enable support of different languages // the ". LANG ." place holder is available. This will be replaced // with xxx where xxx is the users selected language. If // that language isn't available it will default to english. // Therefore you MUST ensure you have at least a english // directory if you choose to localise your template // // // Do not alter this line! // if( !defined('MX_TEMPLATE_CONFIG')) { define(MX_TEMPLATE_CONFIG, TRUE); } $mx_template_config = true; $mx_template_name = 'subSilver'; // ------------------------------------------------------------------------- // Prefix with PORTAL_URL // ------------------------------------------------------------------------- // if ( empty($current_template_path) ) { $current_template_path = "templates/". $mx_template_name; } $mx_template_images = PORTAL_URL . $current_template_path . "/images"; $current_mxblogs_images = $module_root_path . "templates/". $mx_template_name ."/images"; $current_template_phpbb_images = PHPBB_URL . "templates/". $mx_template_name ."/images"; // phpBB graphics template if ( !file_exists( $current_mxblogs_images . '/lang_' . $board_config['default_lang'] ) ) { $link_language='lang_english'; } else { $link_language='lang_' . $board_config['default_lang']; } if( !defined('LANG')) { define('LANG', $link_language); } // ------------------------------------------------------------------------- // (Re)Define images // ------------------------------------------------------------------------- // Rss Feed Site Images - BEGIN $mx_images['logo_url'] = "$mx_template_images/logo.gif"; $mx_images['icon_weblog'] = "$current_mxblogs_images/" . LANG . "/icon_weblog.gif"; // Use standard phpBB graphics // $mx_images['icon_quote'] = "$current_template_phpbb_images/" . LANG . "/icon_quote.gif"; $mx_images['icon_edit'] = "$current_template_phpbb_images/" . LANG . "/icon_edit.gif"; $mx_images['icon_search'] = "$current_template_phpbb_images/" . LANG . "/icon_search.gif"; $mx_images['icon_profile'] = "$current_template_phpbb_images/" . LANG . "/icon_profile.gif"; $mx_images['icon_pm'] = "$current_template_phpbb_images/" . LANG . "/icon_pm.gif"; $mx_images['icon_email'] = "$current_template_phpbb_images/" . LANG . "/icon_email.gif"; $mx_images['icon_delpost'] = "$current_template_phpbb_images/icon_delete.gif"; $mx_images['icon_ip'] = "$current_template_phpbb_images/" . LANG . "/icon_ip.gif"; $mx_images['icon_www'] = "$current_template_phpbb_images/" . LANG . "/icon_www.gif"; $mx_images['icon_icq'] = "$current_template_phpbb_images/" . LANG . "/icon_icq_add.gif"; $mx_images['icon_aim'] = "$current_template_phpbb_images/" . LANG . "/icon_aim.gif"; $mx_images['icon_yim'] = "$current_template_phpbb_images/" . LANG . "/icon_yim.gif"; $mx_images['icon_msnm'] = "$current_template_phpbb_images/" . LANG . "/icon_msnm.gif"; $mx_images['icon_minipost'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['icon_gotopost'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['icon_minipost_new'] = "$current_template_phpbb_images/icon_minipost_new.gif"; $mx_images['icon_latest_reply'] = "$current_template_phpbb_images/icon_latest_reply.gif"; $mx_images['icon_newest_reply'] = "$current_template_phpbb_images/icon_newest_reply.gif"; $mx_images['forum'] = "$current_template_phpbb_images/folder_big.gif"; $mx_images['forum_new'] = "$current_template_phpbb_images/folder_new_big.gif"; $mx_images['forum_locked'] = "$current_template_phpbb_images/folder_locked_big.gif"; $mx_images['folder'] = "$current_template_phpbb_images/folder.gif"; $mx_images['folder_new'] = "$current_template_phpbb_images/folder_new.gif"; $mx_images['folder_hot'] = "$current_template_phpbb_images/folder_hot.gif"; $mx_images['folder_hot_new'] = "$current_template_phpbb_images/folder_new_hot.gif"; $mx_images['folder_locked'] = "$current_template_phpbb_images/folder_lock.gif"; $mx_images['folder_locked_new'] = "$current_template_phpbb_images/folder_lock_new.gif"; $mx_images['folder_sticky'] = "$current_template_phpbb_images/folder_sticky.gif"; $mx_images['folder_sticky_new'] = "$current_template_phpbb_images/folder_sticky_new.gif"; $mx_images['folder_announce'] = "$current_template_phpbb_images/folder_announce.gif"; $mx_images['folder_announce_new'] = "$current_template_phpbb_images/folder_announce_new.gif"; ?> |
|
From: FlorinCB <ory...@us...> - 2008-06-12 18:44:15
|
Update of /cvsroot/mxbb/mx_blogs/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9630 Removed Files: subSilver.cfg Log Message: wrong name --- subSilver.cfg DELETED --- |
|
From: FlorinCB <ory...@us...> - 2008-06-12 05:20:18
|
Update of /cvsroot/mxbb/mx_pjirc/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3894/templates/_core Modified Files: pjirc_chat.tpl Log Message: fix for Linux Index: pjirc_chat.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_pjirc/templates/_core/pjirc_chat.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** pjirc_chat.tpl 29 Feb 2008 15:54:08 -0000 1.2 --- pjirc_chat.tpl 12 Jun 2008 05:20:15 -0000 1.3 *************** *** 34,38 **** <tr> <td align="center" class="row1" width="100%"> ! <applet codebase="{MODULE_PATH}pjirc" name="pjirc" code="IRCApplet.class" archive="irc.jar,pixx.jar,config.jar,javabot.jar" width=780 height=400> <param name="CABINETS" value="irc.cab,securedirc.cab,pixx.cab,config.cab,javabot.cab" /> <param name="plugin1" value="config.Config" /> --- 34,38 ---- <tr> <td align="center" class="row1" width="100%"> ! <applet code="IRCApplet.class" archive="irc.jar,pixx.jar,config.jar,javabot.jar" codebase="{MODULE_PATH}pjirc/" width="780" height="400"> <param name="CABINETS" value="irc.cab,securedirc.cab,pixx.cab,config.cab,javabot.cab" /> <param name="plugin1" value="config.Config" /> *************** *** 43,47 **** <param name="port" value="{PORT}" /> <param name="smileys" value="true"> ! <param name="gui" value="pixx" /> <param name="command1" value="/join {CHANNEL}" /> <param name="pixx:language" value="pixx-{LANG}" /> --- 43,47 ---- <param name="port" value="{PORT}" /> <param name="smileys" value="true"> ! <param name="gui" value="pixx" /> <param name="command1" value="/join {CHANNEL}" /> <param name="pixx:language" value="pixx-{LANG}" /> |
|
From: FlorinCB <ory...@us...> - 2008-06-12 05:20:18
|
Update of /cvsroot/mxbb/mx_pjirc In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3894 Modified Files: pjirc_chat.php Log Message: fix for Linux Index: pjirc_chat.php =================================================================== RCS file: /cvsroot/mxbb/mx_pjirc/pjirc_chat.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** pjirc_chat.php 4 Jun 2008 00:09:08 -0000 1.7 --- pjirc_chat.php 12 Jun 2008 05:20:15 -0000 1.8 *************** *** 147,151 **** 'U_PHPBB_ROOT_PATH' => PHPBB_URL, 'TEMPLATE_ROOT_PATH' => TEMPLATE_ROOT_PATH, ! 'MODULE_PATH' => $module_root_path, 'T_PHPBB_STYLESHEET' => $theme['head_stylesheet'], --- 147,151 ---- 'U_PHPBB_ROOT_PATH' => PHPBB_URL, 'TEMPLATE_ROOT_PATH' => TEMPLATE_ROOT_PATH, ! 'MODULE_PATH' => PORTAL_URL . "modules/mx_pjirc/", 'T_PHPBB_STYLESHEET' => $theme['head_stylesheet'], |
|
From: FlorinCB <ory...@us...> - 2008-06-11 22:24:56
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2123 Modified Files: admin_mx_smilies.php Log Message: one more fix to this Index: admin_mx_smilies.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_smilies.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** admin_mx_smilies.php 11 Jun 2008 22:17:17 -0000 1.8 --- admin_mx_smilies.php 11 Jun 2008 22:24:52 -0000 1.9 *************** *** 233,237 **** } ! $message = $lang['smiley_import_success'] . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid("index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); --- 233,237 ---- } ! $message = $lang['smiley_import_success'] . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); *************** *** 310,314 **** } ! $message = sprintf($lang['export_smiles'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx?export_pack=send", true) . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid("index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); --- 310,314 ---- } ! $message = sprintf($lang['export_smiles'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx?export_pack=send", true) . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); *************** *** 374,378 **** } ! $message = $lang['smiley_del_success'] . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid("index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); --- 374,378 ---- } ! $message = $lang['smiley_del_success'] . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); *************** *** 504,508 **** } ! $message = $lang['smiley_edit_success'] . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid("index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); --- 504,508 ---- } ! $message = $lang['smiley_edit_success'] . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); *************** *** 548,552 **** } ! $message = $lang['smiley_add_success'] . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid("index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); --- 548,552 ---- } ! $message = $lang['smiley_add_success'] . "<br /><br />" . sprintf($lang['Click_return_smileadmin'], "<a href=\"" . mx_append_sid("admin_mx_smilies.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . mx_append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . "\">", "</a>"); mx_message_die(GENERAL_MESSAGE, $message); |
|
From: FlorinCB <ory...@us...> - 2008-06-11 22:17:23
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv28576 Modified Files: admin_mx_smilies.php Log Message: one more fix to this Index: admin_mx_smilies.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_smilies.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_mx_smilies.php 11 Jun 2008 22:00:55 -0000 1.7 --- admin_mx_smilies.php 11 Jun 2008 22:17:17 -0000 1.8 *************** *** 95,108 **** $delimeter = '=+:'; // // Read a listing of uploaded smilies for use in the add or edit smliey code... // ! $dir = @opendir($phpbb_root_path . $board_config['smilies_path']); while($file = @readdir($dir)) { ! if( !@is_dir(phpBB2::phpbb_realpath($phpbb_root_path . $board_config['smilies_path'] . '/' . $file)) ) { ! $img_size = @getimagesize($phpbb_root_path . $board_config['smilies_path'] . '/' . $file); if( $img_size[0] && $img_size[1] ) --- 95,128 ---- $delimeter = '=+:'; + switch (PORTAL_BACKEND) + { + case 'internal': + $smiley_path_url = PHPBB_URL; //change this to PORTAL_URL when shared folder will be removed + $smiley_root_path = $phpbb_root_path; //same here + $smiley_url = 'smile_url'; + break; + case 'phpbb2': + $smiley_path_url = PHPBB_URL; + $smiley_root_path = $phpbb_root_path; + $smiley_url = 'smile_url'; + break; + case 'phpbb3': + $smiley_path_url = PHPBB_URL; + $smiley_root_path = $phpbb_root_path; + $smiley_url = 'smiley_url'; + $board_config['smilies_path'] = str_replace("smiles", "smilies", $board_config['smilies_path']); + break; + } + // // Read a listing of uploaded smilies for use in the add or edit smliey code... // ! $dir = @opendir($smiley_root_path . $board_config['smilies_path']); while($file = @readdir($dir)) { ! if( !@is_dir(phpBB2::phpbb_realpath($smiley_root_path . $board_config['smilies_path'] . '/' . $file)) ) { ! $img_size = @getimagesize($smiley_root_path . $board_config['smilies_path'] . '/' . $file); if( $img_size[0] && $img_size[1] ) *************** *** 163,167 **** } ! $fcontents = @file($mx_root_path . $board_config['smilies_path'] . '/'. $smile_pak); if( empty($fcontents) ) --- 183,187 ---- } ! $fcontents = @file($smiley_root_path . $board_config['smilies_path'] . '/'. $smile_pak); if( empty($fcontents) ) *************** *** 322,332 **** "L_SUBMIT" => $lang['Submit'], "L_RESET" => $lang['Reset'], ! ! "SMILEY_IMG" => $mx_root_path . $board_config['smilies_path'] . '/' . $smiley_images[0], "S_SMILEY_ACTION" => mx_append_sid("admin_mx_smilies.$phpEx"), "S_HIDDEN_FIELDS" => $s_hidden_fields, "S_FILENAME_OPTIONS" => $filename_list, ! "S_SMILEY_BASEDIR" => $mx_root_path . $board_config['smilies_path']) ); --- 342,352 ---- "L_SUBMIT" => $lang['Submit'], "L_RESET" => $lang['Reset'], ! ! "SMILEY_IMG" => $smiley_root_path . $board_config['smilies_path'] . '/' . $smiley_images[0], "S_SMILEY_ACTION" => mx_append_sid("admin_mx_smilies.$phpEx"), "S_HIDDEN_FIELDS" => $s_hidden_fields, "S_FILENAME_OPTIONS" => $filename_list, ! "S_SMILEY_BASEDIR" => $smiley_root_path . $board_config['smilies_path']) ); *************** *** 388,408 **** $smiley_id = $mx_request_vars->request('id', MX_TYPE_INT); - switch (PORTAL_BACKEND) - { - case 'internal': - $smiley_path_url = PHPBB_URL; //change this to PORTAL_URL when shared folder will be removed - $smiley_url = 'smile_url'; - break; - case 'phpbb2': - $smiley_path_url = PHPBB_URL; - $smiley_url = 'smile_url'; - break; - case 'phpbb3': - $smiley_path_url = PHPBB_URL; - $smiley_url = 'smiley_url'; - $board_config['smilies_path'] = str_replace("smiles", "smilies", $board_config['smilies_path']); - break; - } - $sql = "SELECT * FROM " . SMILIES_TABLE . " --- 408,411 ---- *************** *** 455,459 **** "S_HIDDEN_FIELDS" => $s_hidden_fields, "S_FILENAME_OPTIONS" => $filename_list, ! "S_SMILEY_BASEDIR" => $mx_root_path . $board_config['smilies_path']) ); --- 458,462 ---- "S_HIDDEN_FIELDS" => $s_hidden_fields, "S_FILENAME_OPTIONS" => $filename_list, ! "S_SMILEY_BASEDIR" => $smiley_path_url . $board_config['smilies_path']) ); *************** *** 607,611 **** "ROW_CLASS" => $row_class, ! "SMILEY_IMG" => $phpbb_root_path . $board_config['smilies_path'] . '/' . $smilies[$i]['smile_url'], "CODE" => $smilies[$i]['code'], "EMOT" => $smilies[$i]['emoticon'], --- 610,614 ---- "ROW_CLASS" => $row_class, ! "SMILEY_IMG" => $smiley_path_url . $board_config['smilies_path'] . '/' . $smilies[$i]['smile_url'], "CODE" => $smilies[$i]['code'], "EMOT" => $smilies[$i]['emoticon'], |
|
From: FlorinCB <ory...@us...> - 2008-06-11 22:01:04
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20164 Modified Files: admin_mx_smilies.php Log Message: one more fix to this Index: admin_mx_smilies.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_smilies.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** admin_mx_smilies.php 11 Jun 2008 21:51:03 -0000 1.6 --- admin_mx_smilies.php 11 Jun 2008 22:00:55 -0000 1.7 *************** *** 387,390 **** --- 387,407 ---- $smiley_id = $mx_request_vars->request('id', MX_TYPE_INT); + + switch (PORTAL_BACKEND) + { + case 'internal': + $smiley_path_url = PHPBB_URL; //change this to PORTAL_URL when shared folder will be removed + $smiley_url = 'smile_url'; + break; + case 'phpbb2': + $smiley_path_url = PHPBB_URL; + $smiley_url = 'smile_url'; + break; + case 'phpbb3': + $smiley_path_url = PHPBB_URL; + $smiley_url = 'smiley_url'; + $board_config['smilies_path'] = str_replace("smiles", "smilies", $board_config['smilies_path']); + break; + } $sql = "SELECT * *************** *** 433,437 **** "L_RESET" => $lang['Reset'], ! "SMILEY_IMG" => $mx_root_path . $board_config['smilies_path'] . '/' . $smiley_edit_img, "S_SMILEY_ACTION" => mx_append_sid("admin_mx_smilies.$phpEx"), --- 450,454 ---- "L_RESET" => $lang['Reset'], ! "SMILEY_IMG" => $smiley_path_url . $board_config['smilies_path'] . '/' . $smiley_edit_img, "S_SMILEY_ACTION" => mx_append_sid("admin_mx_smilies.$phpEx"), |
|
From: FlorinCB <ory...@us...> - 2008-06-11 21:51:09
|
Update of /cvsroot/mxbb/core/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16231 Modified Files: admin_mx_smilies.php Log Message: include_once works great =)) Index: admin_mx_smilies.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/admin_mx_smilies.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** admin_mx_smilies.php 11 Feb 2008 11:52:35 -0000 1.5 --- admin_mx_smilies.php 11 Jun 2008 21:51:03 -0000 1.6 *************** *** 37,51 **** } - // - // Load default header - // - if ($mx_request_vars->is_get('export_pack')) - { - if ($mx_request_vars->get('export_pack', MX_TYPE_NO_TAGS) == "send" ) - { - $no_page_header = true; - } - } - /* $mx_root_path = "./../"; --- 37,40 ---- *************** *** 64,67 **** --- 53,69 ---- $mx_root_path = './../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); + include_once($mx_root_path . 'common.' . $phpEx); + + // + // Load default header + // + if ($mx_request_vars->is_get('export_pack')) + { + if ($mx_request_vars->get('export_pack', MX_TYPE_NO_TAGS) == "send" ) + { + $no_page_header = true; + } + } + $cancel = $mx_request_vars->is_post('cancel'); $no_page_header = $cancel; |
|
From: FlorinCB <ory...@us...> - 2008-06-11 21:41:07
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11578 Modified Files: mx_functions_bbcode.php Log Message: extra code commented to be removed if it's ok Index: mx_functions_bbcode.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_bbcode.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mx_functions_bbcode.php 10 Jun 2008 03:35:19 -0000 1.1 --- mx_functions_bbcode.php 11 Jun 2008 21:41:00 -0000 1.2 *************** *** 44,48 **** } - /** * phpBB Smilies pass. --- 44,47 ---- *************** *** 76,81 **** } ! $smilies_path = $board_config['smilies_path']; ! $board_config['smilies_path'] = $smiley_path_url . $board_config['smilies_path']; if (!isset($orig)) --- 75,80 ---- } ! //$smilies_path = $board_config['smilies_path']; ! //$board_config['smilies_path'] = $smiley_path_url . $board_config['smilies_path']; if (!isset($orig)) *************** *** 100,104 **** { $orig[] = "/(?<=.\W|\W.|^\W)" . preg_quote($smilies[$i]['code'], "/") . "(?=.\W|\W.|\W$)/"; ! $repl[] = '<img src="'. $board_config['smilies_path'] . '/' . $smilies[$i][$smiley_url] . '" alt="' . $smilies[$i]['emoticon'] . '" border="0" />'; } } --- 99,103 ---- { $orig[] = "/(?<=.\W|\W.|^\W)" . preg_quote($smilies[$i]['code'], "/") . "(?=.\W|\W.|\W$)/"; ! $repl[] = '<img src="' . $smiley_path_url . $board_config['smilies_path'] . '/' . $smilies[$i][$smiley_url] . '" alt="' . $smilies[$i]['emoticon'] . '" border="0" />'; } } *************** *** 110,114 **** } ! $board_config['smilies_path'] = $smilies_path; return $message; --- 109,113 ---- } ! //$board_config['smilies_path'] = $smilies_path; return $message; |