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...> - 2008-09-18 00:35:57
|
Update of /cvsroot/mxbb/mx_music/phpbb2/mx_mod/styles In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13710/styles Log Message: Directory /cvsroot/mxbb/mx_music/phpbb2/mx_mod/styles added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:35:57
|
Update of /cvsroot/mxbb/mx_music/phpbb2/mx_mod/language In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13710/language Log Message: Directory /cvsroot/mxbb/mx_music/phpbb2/mx_mod/language added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:35:57
|
Update of /cvsroot/mxbb/mx_music/phpbb2/mx_mod/mx_shared In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13710/mx_shared Log Message: Directory /cvsroot/mxbb/mx_music/phpbb2/mx_mod/mx_shared added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:35:57
|
Update of /cvsroot/mxbb/mx_music/phpbb2/mx_mod/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13710/includes Log Message: Directory /cvsroot/mxbb/mx_music/phpbb2/mx_mod/includes added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:35:33
|
Update of /cvsroot/mxbb/mx_music/phpbb2/mx_mod In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13447/mx_mod Log Message: Directory /cvsroot/mxbb/mx_music/phpbb2/mx_mod added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:30:42
|
Update of /cvsroot/mxbb/mx_mod_core/root/mx_mod/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10789 Modified Files: functions_core.php Log Message: fix Index: functions_core.php =================================================================== RCS file: /cvsroot/mxbb/mx_mod_core/root/mx_mod/includes/functions_core.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** functions_core.php 15 Mar 2008 19:34:36 -0000 1.4 --- functions_core.php 18 Sep 2008 07:30:38 -0000 1.5 *************** *** 3116,3119 **** --- 3116,3120 ---- function _read($var, $type = MX_TYPE_ANY, $dflt = '', $not_null = false) { + global $HTTP_POST_VARS, $HTTP_GET_VARS; //is not required? if( ($type & (MX_TYPE_POST_VARS|MX_TYPE_GET_VARS)) == 0 ) { *************** *** 3121,3128 **** } ! if( ($type & MX_TYPE_POST_VARS) && isset($_POST[$var]) || ! ($type & MX_TYPE_GET_VARS) && isset($_GET[$var]) ) { ! $val = ( ($type & MX_TYPE_POST_VARS) && isset($_POST[$var]) ? $_POST[$var] : $_GET[$var] ); if( !($type & MX_TYPE_NO_STRIP) ) { --- 3122,3129 ---- } ! if( ($type & MX_TYPE_POST_VARS) && isset($HTTP_POST_VARS[$var]) || ! ($type & MX_TYPE_GET_VARS) && isset($HTTP_GET_VARS[$var]) ) { ! $val = ( ($type & MX_TYPE_POST_VARS) && isset($HTTP_POST_VARS[$var]) ? $HTTP_POST_VARS[$var] : $HTTP_GET_VARS[$var] ); if( !($type & MX_TYPE_NO_STRIP) ) { *************** *** 3265,3270 **** function is_post($var) { // Note: _x and _y are used by (at least IE) to return the mouse position at onclick of INPUT TYPE="img" elements. ! return (isset($_POST[$var]) || ( isset($_POST[$var.'_x']) && isset($_POST[$var.'_y']))) ? 1 : 0; } --- 3266,3272 ---- function is_post($var) { + global $HTTP_POST_VARS; // Note: _x and _y are used by (at least IE) to return the mouse position at onclick of INPUT TYPE="img" elements. ! return (isset($HTTP_POST_VARS[$var]) || ( isset($HTTP_POST_VARS[$var.'_x']) && isset($HTTP_POST_VARS[$var.'_y']))) ? 1 : 0; } *************** *** 3280,3284 **** function is_get($var) { ! return isset($_GET[$var]) ? 1 : 0 ; } --- 3282,3287 ---- function is_get($var) { ! global $HTTP_GET_VARS; ! return isset($HTTP_GET_VARS[$var]) ? 1 : 0 ; } *************** *** 3308,3312 **** function is_empty_post($var) { ! return (empty($_POST[$var]) && ( empty($_POST[$var.'_x']) || empty($_POST[$var.'_y']))) ? 1 : 0 ; } /** --- 3311,3316 ---- function is_empty_post($var) { ! global $HTTP_POST_VARS; ! return (empty($HTTP_POST_VARS[$var]) && ( empty($HTTP_POST_VARS[$var.'_x']) || empty($HTTP_POST_VARS[$var.'_y']))) ? 1 : 0 ; } /** *************** *** 3322,3326 **** function is_empty_get($var) { ! return empty($_GET[$var]) ? 1 : 0 ; } --- 3326,3331 ---- function is_empty_get($var) { ! global $HTTP_GET_VARS; ! return empty($HTTP_GET_VARS[$var]) ? 1 : 0 ; } |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:25:38
|
Update of /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6040/phpbb2/templates/subSilver Modified Files: music_comment_body.tpl Log Message: version 2.9.4 Index: music_comment_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver/music_comment_body.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** music_comment_body.tpl 18 Sep 2008 03:31:38 -0000 1.1 --- music_comment_body.tpl 18 Sep 2008 07:24:46 -0000 1.2 *************** *** 256,260 **** <table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline"> <tr> ! <th class="thTop" height="25" colspan="2">{L_POST_YOUR_COMMENT}</th> </tr> <!-- BEGIN logout --> --- 256,260 ---- <table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline"> <tr> ! <th class="thTop" height="25" colspan="3">{L_POST_YOUR_COMMENT}</th> </tr> <!-- BEGIN logout --> *************** *** 286,290 **** </tr> <tr> ! <td class="catBottom" align="center" colspan="2" height="28"><input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /></td> </tr> </table> --- 286,290 ---- </tr> <tr> ! <td class="catBottom" align="center" colspan="3" height="28"><input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /></td> </tr> </table> |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:25:21
|
Update of /cvsroot/mxbb/mx_music In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6040 Modified Files: db_install.php db_upgrade.php music.php Log Message: version 2.9.4 Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/db_install.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** db_install.php 10 Sep 2008 12:26:14 -0000 1.13 --- db_install.php 18 Sep 2008 07:24:44 -0000 1.14 *************** *** 33,37 **** } ! $mx_module_version = '2.9.3'; $mx_module_copy = 'Mx-Publisher <i> - Music Center</i> module by Cf Manager & <a href="http://www.mx-publisher.com/" target="_blank">OryNider</a>'; --- 33,37 ---- } ! $mx_module_version = '2.9.4'; $mx_module_copy = 'Mx-Publisher <i> - Music Center</i> module by Cf Manager & <a href="http://www.mx-publisher.com/" target="_blank">OryNider</a>'; Index: music.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music.php,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** music.php 18 Sep 2008 03:31:37 -0000 1.28 --- music.php 18 Sep 2008 07:24:45 -0000 1.29 *************** *** 383,387 **** $allowed_cat = ''; // For Recent Public Songs below ! // // $catrows now stores all categories which this user can view. Dump them out! --- 383,387 ---- $allowed_cat = ''; // For Recent Public Songs below ! // // $catrows now stores all categories which this user can view. Dump them out! *************** *** 392,399 **** // Build allowed category-list (for recent songs after here) // -------------------------------- - $allowed_cat .= ($allowed_cat == '') ? $catrows[$i]['cat_id'] : ',' . $catrows[$i]['cat_id']; - - // -------------------------------- // Build moderators list --- 392,396 ---- *************** *** 405,409 **** $grouprows= array(); ! if( $catrows[$i]['cat_moderator_groups'] != '') { switch (PORTAL_BACKEND) --- 402,406 ---- $grouprows= array(); ! if(intval($catrows[$i]['cat_moderator_groups'])) { switch (PORTAL_BACKEND) *************** *** 423,427 **** WHERE " . $sql_where . " AND group_type <> ". GROUP_HIDDEN ." ! AND group_id IN (". $catrows[$i]['cat_moderator_groups'] .") ORDER BY group_name ASC"; if ( !$result = $db->sql_query($sql) ) --- 420,424 ---- WHERE " . $sql_where . " AND group_type <> ". GROUP_HIDDEN ." ! AND group_id IN (". intval($catrows[$i]['cat_moderator_groups']) .") ORDER BY group_name ASC"; if ( !$result = $db->sql_query($sql) ) *************** *** 451,455 **** // Get Last song of this Category // ------------------------------------------ - if ($catrows[$i]['cat_type'] == 0) { --- 448,451 ---- *************** *** 533,536 **** --- 529,534 ---- // END of Last Song + //while ($catrows[$i]['cat_id'] = 4) { die("4"); } + $template->assign_block_vars('catrow', array( 'U_VIEW_CAT' => mx_append_sid(this_mo_mxurl("music_mode=music_cat&cat_id=". $catrows[$i]['cat_id'])), *************** *** 547,551 **** 'MODERATORS' => $moderators_list, 'LAST_SONG_INFO' => $last_song_info) ! ); $sql = "SELECT s.*, u.user_id, u.username, r.rate_song_id, AVG(r.rate_point) AS rating, COUNT(DISTINCT c.comment_id) AS comments --- 545,549 ---- 'MODERATORS' => $moderators_list, 'LAST_SONG_INFO' => $last_song_info) ! ); $sql = "SELECT s.*, u.user_id, u.username, r.rate_song_id, AVG(r.rate_point) AS rating, COUNT(DISTINCT c.comment_id) AS comments *************** *** 614,618 **** else { ! // this is a parent category $sc_sql = "SELECT * FROM ". MUSIC_CAT_TABLE ." --- 612,616 ---- else { ! // this is a parent category cat_type = 1 $sc_sql = "SELECT * FROM ". MUSIC_CAT_TABLE ." *************** *** 675,682 **** } } // ------------------------------------------ // Parse to template the info of the current Category // ------------------------------------------ ! if ($catrows[$i]['cat_type'] == 0) { // ------------------------------------ --- 673,701 ---- } } + } + + + if (!$mx_request_vars->is_empty_request('c')) + { + $sql = "SELECT c.cat_type, c.cat_id + FROM ". MUSIC_CAT_TABLE ." AS c + WHERE cat_id = " . $cat_id . " + LIMIT 1"; + if( !($result = $db->sql_query($sql)) ) + { + mx_message_die(GENERAL_ERROR, 'Could not query subcategories list', '', __LINE__, __FILE__, $sql); + } + + $cat_root = array(); + + while( $row_ = $db->sql_fetchrow($result) ) + { + $cat_root[] = $row_root; + } + // ------------------------------------------ // Parse to template the info of the current Category // ------------------------------------------ ! if (($cat_root['cat_type'] == 0) || ($cat_root['cat_type'] == 1)) { // ------------------------------------ *************** *** 686,691 **** FROM ". MUSIC_CAT_TABLE ." AS c LEFT JOIN ". MUSIC_TABLE ." AS s ON c.cat_id = s.song_cat_id WHERE c.cat_id = " . $cat_id . " ! GROUP BY c.cat_id ! ORDER BY cat_order"; if( !($result = $db->sql_query($sql)) ) { --- 705,709 ---- FROM ". MUSIC_CAT_TABLE ." AS c LEFT JOIN ". MUSIC_TABLE ." AS s ON c.cat_id = s.song_cat_id WHERE c.cat_id = " . $cat_id . " ! LIMIT 1"; if( !($result = $db->sql_query($sql)) ) { *************** *** 699,703 **** while( $row_items = $db->sql_fetchrow($result) ) { ! $music_user_access = music_user_access($cat_id, $row_items, 1, 0, 0, 0, 0, 0); // VIEW if ($music_user_access['view'] == 1) { --- 717,721 ---- while( $row_items = $db->sql_fetchrow($result) ) { ! $music_user_access = music_user_access($catrows[$i]['cat_id'], $row_items, 1, 0, 0, 0, 0, 0); // VIEW if ($music_user_access['view'] == 1) { *************** *** 705,709 **** $thiscat_items = $row_items; ! $auth_data_items = music_user_access($cat_id, $row_items, 1, 1, 1, 1, 1, 1); // ALL $total_songs = $thiscat_items['count']; } --- 723,727 ---- $thiscat_items = $row_items; ! $auth_data_items = music_user_access($catrows[$i]['cat_id'], $row_items, 1, 1, 1, 1, 1, 1); // ALL $total_songs = $thiscat_items['count']; } *************** *** 1552,1559 **** ) ); } else { ! $template->assign_block_vars('no_songs', array()); } // --- 1570,1578 ---- ) ); + } else { ! $template->assign_block_vars('no_songs', array()); } // *************** *** 1607,1610 **** --- 1626,1630 ---- + /* +---------------------------------------------------------- *************** *** 1809,1813 **** } } ! for ($i = 0; $i < count($catsrow); $i++) { --- 1829,1835 ---- } } ! ! $allowed_cats = ''; ! for ($i = 0; $i < count($catsrow); $i++) { *************** *** 1816,1823 **** // -------------------------------- ! $allowed_cat .= ($allowed_cat == '') ? $catsrow[$i]['cat_id'] : ',' . $catsrow[$i]['cat_id']; } ! if ( ($allowed_cat != '') && ($music_config['top'] > '0') ) { $sql = "SELECT s.song_id, s.song_title, s.song_desc, s.song_singer, s.song_user_id, s.song_user_ip, s.song_username, s.song_time, s.song_cat_id, s.song_view_count, u.user_id, u.username, r.rate_song_id, AVG(r.rate_point) AS rating, COUNT(DISTINCT c.comment_id) AS comments, MAX(c.comment_id) as new_comment --- 1838,1845 ---- // -------------------------------- ! $allowed_cats .= ($allowed_cats == '') ? $catsrow[$i]['cat_id'] : ',' . $catsrow[$i]['cat_id']; } ! if ( ($allowed_cats != '') && ($music_config['top'] > '0') ) { $sql = "SELECT s.song_id, s.song_title, s.song_desc, s.song_singer, s.song_user_id, s.song_user_ip, s.song_username, s.song_time, s.song_cat_id, s.song_view_count, u.user_id, u.username, r.rate_song_id, AVG(r.rate_point) AS rating, COUNT(DISTINCT c.comment_id) AS comments, MAX(c.comment_id) as new_comment Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/db_upgrade.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** db_upgrade.php 10 Sep 2008 06:36:35 -0000 1.10 --- db_upgrade.php 18 Sep 2008 07:24:44 -0000 1.11 *************** *** 30,34 **** } ! $mx_module_version = '2.9.3'; $mx_module_copy = 'Mx-Publisher <i> - Music Center</i> module by Cf Manager & <a href="http://www.mx-publisher.com/" target="_blank">OryNider</a>'; $sql = array(); --- 30,34 ---- } ! $mx_module_version = '2.9.4'; $mx_module_copy = 'Mx-Publisher <i> - Music Center</i> module by Cf Manager & <a href="http://www.mx-publisher.com/" target="_blank">OryNider</a>'; $sql = array(); |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:25:18
|
Update of /cvsroot/mxbb/mx_music/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6040/templates/_core Modified Files: music_comment_body.tpl Log Message: version 2.9.4 Index: music_comment_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_music/templates/_core/music_comment_body.tpl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** music_comment_body.tpl 9 Sep 2008 10:38:35 -0000 1.2 --- music_comment_body.tpl 18 Sep 2008 07:24:47 -0000 1.3 *************** *** 256,260 **** <table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline"> <tr> ! <th class="thTop" height="25" colspan="2">{L_POST_YOUR_COMMENT}</th> </tr> <!-- BEGIN logout --> --- 256,260 ---- <table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline"> <tr> ! <th class="thTop" height="25" colspan="3">{L_POST_YOUR_COMMENT}</th> </tr> <!-- BEGIN logout --> *************** *** 286,290 **** </tr> <tr> ! <td class="catBottom" align="center" colspan="2" height="28"><input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /></td> </tr> </table> --- 286,290 ---- </tr> <tr> ! <td class="catBottom" align="center" colspan="3" height="28"><input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /></td> </tr> </table> |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:25:18
|
Update of /cvsroot/mxbb/mx_music/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6040/admin Modified Files: admin_music_cat.php Log Message: version 2.9.4 Index: admin_music_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/admin/admin_music_cat.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** admin_music_cat.php 10 Sep 2008 06:05:18 -0000 1.9 --- admin_music_cat.php 18 Sep 2008 07:24:44 -0000 1.10 *************** *** 481,486 **** // Here we insert a new row into the db ! $sql = "INSERT INTO ". MUSIC_CAT_TABLE ." (cat_title, cat_desc, cat_order, cat_view_level, cat_upload_level, cat_rate_level, cat_comment_level, cat_edit_level, cat_delete_level, cat_approval, cat_parent, cat_type) ! VALUES ('$cat_title', '$cat_desc', '$cat_order', '$view_level', '$upload_level', '$rate_level', '$comment_level', '$edit_level', '$delete_level', '$cat_approval', $cat_parent, $cat_type)"; if(!$result = $db->sql_query($sql)) { --- 481,486 ---- // Here we insert a new row into the db ! $sql = "INSERT INTO ". MUSIC_CAT_TABLE ." (cat_title, cat_desc, cat_order, cat_view_level, cat_upload_level, cat_rate_level, cat_comment_level, cat_edit_level, cat_delete_level, cat_approval, cat_parent, cat_type, cat_views) ! VALUES ('$cat_title', '$cat_desc', '$cat_order', '$view_level', '$upload_level', '$rate_level', '$comment_level', '$edit_level', '$delete_level', '$cat_approval', $cat_parent, $cat_type, '0')"; if(!$result = $db->sql_query($sql)) { |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:24:51
|
Update of /cvsroot/mxbb/mx_music/music_box/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6040/music_box/modules Modified Files: music_comment.php Log Message: version 2.9.4 Index: music_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_comment.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** music_comment.php 10 Sep 2008 06:05:23 -0000 1.8 --- music_comment.php 18 Sep 2008 07:24:46 -0000 1.9 *************** *** 263,268 **** // Smilies ! $commentrow[$i]['comment_text'] = $mx_bbcode->smilies_pass($commentrow[$i]['comment_text']); ! $commentrow[$i]['comment_text'] = $mx_bbcode->make_clickable($commentrow[$i]['comment_text']); $commentrow[$i]['comment_text'] = nl2br($commentrow[$i]['comment_text']); --- 263,268 ---- // Smilies ! $commentrow[$i]['comment_text'] = music_smilies_pass($commentrow[$i]['comment_text']); ! $commentrow[$i]['comment_text'] = music_make_clickable($commentrow[$i]['comment_text']); $commentrow[$i]['comment_text'] = nl2br($commentrow[$i]['comment_text']); |
|
From: FlorinCB <ory...@us...> - 2008-09-18 00:24:51
|
Update of /cvsroot/mxbb/mx_music/music_box/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6040/music_box/includes Modified Files: music_constants.php music_functions.php music_integration.php Log Message: version 2.9.4 Index: music_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/includes/music_functions.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** music_functions.php 18 Sep 2008 00:56:53 -0000 1.7 --- music_functions.php 18 Sep 2008 07:24:45 -0000 1.8 *************** *** 228,232 **** if ($user_id && $user_id != ANONYMOUS) { ! $profile_url = mx_append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&u=" . (int) $user_id); $full_url = '<a href="' . $profile_url . '"><span ' . $user_style. '>' . $username . '</span></a>'; } --- 228,232 ---- if ($user_id && $user_id != ANONYMOUS) { ! $profile_url = mx_append_sid($phpbb_root_path . "profile.$phpEx?mode=viewprofile&u=" . (int) $user_id); $full_url = '<a href="' . $profile_url . '"><span ' . $user_style. '>' . $username . '</span></a>'; } *************** *** 277,281 **** function music_comment_sql_smilies($auth_data) { ! global $db, $template, $board_config; $inline_columns = 6; --- 277,281 ---- function music_comment_sql_smilies($auth_data) { ! global $db, $template, $board_config, $phpbb_root_path; $inline_columns = 6; *************** *** 285,289 **** { case 'internal': ! $smiley_path_url = PHPBB_URL; //change this to PORTAL_URL when shared folder will be removed $fields = 'smilies'; $smiley_url = 'smile_url'; --- 285,289 ---- { case 'internal': ! $smiley_path_url = $phpbb_root_path; //change this to PORTAL_URL when shared folder will be removed $fields = 'smilies'; $smiley_url = 'smile_url'; *************** *** 292,296 **** break; case 'phpbb2': ! $smiley_path_url = PHPBB_URL; $fields = 'smilies'; $smiley_url = 'smile_url'; --- 292,296 ---- break; case 'phpbb2': ! $smiley_path_url = $phpbb_root_path; $fields = 'smilies'; $smiley_url = 'smile_url'; *************** *** 299,303 **** break; case 'phpbb3': ! $smiley_path_url = PHPBB_URL; $fields = 'smiley'; $smiley_url = 'smiley_url'; --- 299,303 ---- break; case 'phpbb3': ! $smiley_path_url = $phpbb_root_path; $fields = 'smiley'; $smiley_url = 'smiley_url'; *************** *** 326,330 **** } ! if (!$result = $db->sql_query_limit($sql, $max_smilies)) { mx_message_die(GENERAL_ERROR, "Couldn't retrieve smilies list", '', __LINE__, __FILE__, $sql); --- 326,332 ---- } ! $sql .= " LIMIT $max_smilies"; ! ! if (!$result = $db->sql_query($sql)) { mx_message_die(GENERAL_ERROR, "Couldn't retrieve smilies list", '', __LINE__, __FILE__, $sql); *************** *** 410,414 **** { 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'; --- 412,416 ---- { case 'internal': ! $smiley_path_url = $phpbb_root_path; //change this to PORTAL_URL when shared folder will be removed $smiley_root_path = $phpbb_root_path; //same here $smiley_url = 'smile_url'; *************** *** 417,421 **** break; case 'phpbb2': ! $smiley_path_url = PHPBB_URL; $smiley_root_path = $phpbb_root_path; $smiley_url = 'smile_url'; --- 419,423 ---- break; case 'phpbb2': ! $smiley_path_url = $phpbb_root_path; $smiley_root_path = $phpbb_root_path; $smiley_url = 'smile_url'; *************** *** 424,428 **** break; case 'phpbb3': ! $smiley_path_url = PHPBB_URL; $smiley_root_path = $phpbb_root_path; $smiley_url = 'smiley_url'; --- 426,430 ---- break; case 'phpbb3': ! $smiley_path_url = $phpbb_root_path; $smiley_root_path = $phpbb_root_path; $smiley_url = 'smiley_url'; Index: music_integration.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/includes/music_integration.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** music_integration.php 7 Sep 2008 18:06:29 -0000 1.4 --- music_integration.php 18 Sep 2008 07:24:46 -0000 1.5 *************** *** 66,70 **** $pageid = ($new_pageid) ? intval($new_pageid) : ($page_id && is_numeric($page_id)) ? intval($page_id) : $mx_request_vars->request('page', MX_TYPE_INT, $music_index); ! $args .= ($args == '' ? '' : '&' ) . 'modrewrite=no'; $dynamicId = !empty($dynamic_block) ? ( $non_html_amp ? '&dynamic_block=' : '&dynamic_block=' ) . $dynamic_block : ''; --- 66,70 ---- $pageid = ($new_pageid) ? intval($new_pageid) : ($page_id && is_numeric($page_id)) ? intval($page_id) : $mx_request_vars->request('page', MX_TYPE_INT, $music_index); ! $args .= (($args == '') ? '' : '&' ) . 'modrewrite=no'; $dynamicId = !empty($dynamic_block) ? ( $non_html_amp ? '&dynamic_block=' : '&dynamic_block=' ) . $dynamic_block : ''; Index: music_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/includes/music_constants.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** music_constants.php 18 Sep 2008 00:56:53 -0000 1.9 --- music_constants.php 18 Sep 2008 07:24:45 -0000 1.10 *************** *** 15,20 **** if ( !MXBB_MODULE ) ! { ! $this_phpbb_url = str_replace("//", "/", $portal_config['portal_url'] . '/'); define('PORTAL_URL', $this_phpbb_url); --- 15,20 ---- if ( !MXBB_MODULE ) ! { ! $this_phpbb_url = $portal_config['portal_url']; define('PORTAL_URL', $this_phpbb_url); |
|
From: FlorinCB <ory...@us...> - 2008-09-17 20:32:11
|
Update of /cvsroot/mxbb/mx_music In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26934 Modified Files: music.php Log Message: Fixes and phpBB images Index: music.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** music.php 18 Sep 2008 00:28:07 -0000 1.27 --- music.php 18 Sep 2008 03:31:37 -0000 1.28 *************** *** 538,542 **** 'U_VIEW_MEDIA_CAT' => mx_append_sid(this_mo_mxurl("music_mode=music_media_cat&cat_id=". $catrows[$i]['cat_id'])), 'CAT_TITLE' => $catrows[$i]['cat_title'], ! 'CAT_IMG' => $images['folder'], 'CAT_DESC' => $catrows[$i]['cat_desc'], 'SONGS' => $catrows[$i]['count'], --- 538,542 ---- 'U_VIEW_MEDIA_CAT' => mx_append_sid(this_mo_mxurl("music_mode=music_media_cat&cat_id=". $catrows[$i]['cat_id'])), 'CAT_TITLE' => $catrows[$i]['cat_title'], ! 'CAT_IMG' => $images['forum'], 'CAT_DESC' => $catrows[$i]['cat_desc'], 'SONGS' => $catrows[$i]['count'], *************** *** 693,710 **** } ! $thiscat = array(); // this category ! $catrows = array(); // all categories for jumpbox ! $auth_data = array(); //album auth ! while( $row = $db->sql_fetchrow($result) ) { ! $music_user_access = music_user_access($cat_id, $row, 1, 0, 0, 0, 0, 0); // VIEW if ($music_user_access['view'] == 1) { ! $catrows[] = $row; ! $thiscat = $row; ! $auth_data = music_user_access($cat_id, $row, 1, 1, 1, 1, 1, 1); // ALL ! $total_songs = $thiscat['count']; } } --- 693,710 ---- } ! $thiscat_items = array(); // this category ! $catrows_items = array(); // all categories for jumpbox ! $auth_data_items = array(); //album auth ! while( $row_items = $db->sql_fetchrow($result) ) { ! $music_user_access = music_user_access($cat_id, $row_items, 1, 0, 0, 0, 0, 0); // VIEW if ($music_user_access['view'] == 1) { ! $catrows_items[] = $row_items; ! $thiscat_items = $row_items; ! $auth_data_items = music_user_access($cat_id, $row_items, 1, 1, 1, 1, 1, 1); // ALL ! $total_songs = $thiscat_items['count']; } } *************** *** 714,721 **** { $template->assign_vars(array( ! 'U_VIEW_CAT' => mx_append_sid(this_mo_mxurl("music_mode=music_cat&cat_id=". $catrows[$i]['cat_id'])), ! 'CAT_TITLE' => $thiscat['cat_title'], ! 'CAT_VIEWS' => $thiscat['cat_views'], ! 'CAT_DESC' => $thiscat['cat_desc'], 'WIDTH' => ( !empty($media_width) ? $media_width : '425' ), 'HEIGHT' => ( !empty($media_height) ? $media_height : '350' ), --- 714,721 ---- { $template->assign_vars(array( ! 'U_VIEW_CAT' => mx_append_sid(this_mo_mxurl("music_mode=music_cat&cat_id=". $catrows_items[$i]['cat_id'])), ! 'CAT_TITLE' => $thiscat_items['cat_title'], ! 'CAT_VIEWS' => $thiscat_items['cat_views'], ! 'CAT_DESC' => $thiscat_items['cat_desc'], 'WIDTH' => ( !empty($media_width) ? $media_width : '425' ), 'HEIGHT' => ( !empty($media_height) ? $media_height : '350' ), *************** *** 726,733 **** { $template->assign_vars(array( ! 'U_VIEW_CAT' => mx_append_sid(this_mo_mxurl("music_mode=music_cat&cat_id=". $catrows[$i]['cat_id'])), ! 'CAT_TITLE' => $thiscat['cat_title'], ! 'CAT_VIEWS' => $thiscat['cat_views'], ! 'CAT_DESC' => $thiscat['cat_desc'], 'WIDTH' => ( !empty($media_width) ? $media_width : '425' ), 'HEIGHT' => ( !empty($media_height) ? $media_height : '350' ), --- 726,733 ---- { $template->assign_vars(array( ! 'U_VIEW_CAT' => mx_append_sid(this_mo_mxurl("music_mode=music_cat&cat_id=". $catrows_items[$i]['cat_id'])), ! 'CAT_TITLE' => $thiscat_items['cat_title'], ! 'CAT_VIEWS' => $thiscat_items['cat_views'], ! 'CAT_DESC' => $thiscat_items['cat_desc'], 'WIDTH' => ( !empty($media_width) ? $media_width : '425' ), 'HEIGHT' => ( !empty($media_height) ? $media_height : '350' ), *************** *** 767,771 **** } ! if ($auth_data['upload']) { $enable_soung_upload_switch = true; --- 767,771 ---- } ! if ($auth_data_items['upload']) { $enable_soung_upload_switch = true; *************** *** 776,783 **** // Build Auth List // ------------------------------------ ! $auth_key = array_keys($auth_data); ! $auth_list = ''; ! for ($i = 0; $i < (count($auth_data) - 1); $i++) // ignore MODERATOR in this loop { // --- 776,783 ---- // Build Auth List // ------------------------------------ ! $auth_key = array_keys($auth_data_items); ! $auth_list_items = ''; ! for ($i = 0; $i < (count($auth_data_items) - 1); $i++) // ignore MODERATOR in this loop { // *************** *** 789,800 **** } ! $auth_list .= ($auth_data[$auth_key[$i]] == 1) ? $lang['Music_'. $auth_key[$i] .'_can'] : $lang['Music_'. $auth_key[$i] .'_cannot']; ! $auth_list .= '<br />'; } // add Moderator Control Panel here ! if( ($userdata['user_level'] == ADMIN) or ($auth_data['moderator'] == 1) ) { ! $auth_list .= sprintf($lang['Music_moderate_can'], '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_modcp&cat_id=$cat_id")) .'">', '</a>'); } // --- 789,800 ---- } ! $auth_list_items .= ($auth_data_items[$auth_key[$i]] == 1) ? $lang['Music_'. $auth_key[$i] .'_can'] : $lang['Music_'. $auth_key[$i] .'_cannot']; ! $auth_list_items .= '<br />'; } // add Moderator Control Panel here ! if( ($userdata['user_level'] == ADMIN) or ($auth_data_items['moderator'] == 1) ) { ! $auth_list_items .= sprintf($lang['Music_moderate_can'], '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_modcp&cat_id=$cat_id")) .'">', '</a>'); } // *************** *** 810,814 **** $moderators_list = ''; ! if ($thiscat['cat_moderator_groups'] != '') { switch (PORTAL_BACKEND) --- 810,814 ---- $moderators_list = ''; ! if ($thiscat_items['cat_moderator_groups'] != '') { switch (PORTAL_BACKEND) *************** *** 828,832 **** WHERE " . $sql_where . " AND group_type <> ". GROUP_HIDDEN ." ! AND group_id IN (". $thiscat['cat_moderator_groups'] .") ORDER BY group_name ASC"; if ( !$result = $db->sql_query($sql) ) --- 828,832 ---- WHERE " . $sql_where . " AND group_type <> ". GROUP_HIDDEN ." ! AND group_id IN (". $thiscat_items['cat_moderator_groups'] .") ORDER BY group_name ASC"; if ( !$result = $db->sql_query($sql) ) *************** *** 985,991 **** $song_approval_sql = 'AND s.song_approval = 1'; ! if ($thiscat['cat_approval'] != MUSIC_USER) { ! if( ($userdata['user_level'] == ADMIN) or (($auth_data['moderator'] == 1) and ($thiscat['cat_approval'] == MUSIC_MOD)) ) { $song_approval_sql = ''; --- 985,991 ---- $song_approval_sql = 'AND s.song_approval = 1'; ! if ($thiscat_items['cat_approval'] != MUSIC_USER) { ! if( ($userdata['user_level'] == ADMIN) or (($auth_data_items['moderator'] == 1) and ($thiscat_items['cat_approval'] == MUSIC_MOD)) ) { $song_approval_sql = ''; *************** *** 1050,1056 **** $approval_link = ''; ! if ($thiscat['cat_approval'] != MUSIC_USER) { ! if( ($userdata['user_level'] == ADMIN) or (($auth_data['moderator'] == 1) and ($thiscat['cat_approval'] == MUSIC_MOD)) ) { $approval_mode = ($songrow[$j]['song_approval'] == 0) ? 'approval' : 'unapproval'; --- 1050,1056 ---- $approval_link = ''; ! if ($thiscat_items['cat_approval'] != MUSIC_USER) { ! if( ($userdata['user_level'] == ADMIN) or (($auth_data_items['moderator'] == 1) and ($thiscat_items['cat_approval'] == MUSIC_MOD)) ) { $approval_mode = ($songrow[$j]['song_approval'] == 0) ? 'approval' : 'unapproval'; *************** *** 1530,1540 **** 'COMMENTS' => ($music_config['comment'] == 1) ? ( '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_comment&song_id=". $songrow[$j]['song_id'])) . '">' . $songrow[$j]['comments'] . '</a>' ) : '', ! 'EDIT' => ( ( $auth_data['edit'] and ($songrow[$j]['song_user_id'] == $userdata['user_id']) ) or ($auth_data['moderator'] and ($thiscat['cat_edit_level'] != MUSIC_ADMIN) ) or ($userdata['user_level'] == ADMIN) ) ? '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_edit&song_id=". $songrow[$j]['song_id'])) . '">' . $lang['Edit_song'] . '</a>' : '', ! 'DELETE' => ( ( $auth_data['delete'] and ($songrow[$j]['song_user_id'] == $userdata['user_id']) ) or ($auth_data['moderator'] and ($thiscat['cat_delete_level'] != MUSIC_ADMIN) ) or ($userdata['user_level'] == ADMIN) ) ? '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_delete&song_id=". $songrow[$j]['song_id'])) . '">' . $lang['Delete_song'] . '</a>' : '', ! 'MOVE' => ($auth_data['moderator']) ? '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_modcp&mode=move&song_id=". $songrow[$j]['song_id'])) .'">'. $lang['Move'] .'</a>' : '', ! 'LOCK' => ($auth_data['moderator']) ? '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_modcp&mode=". (($songrow[$j]['song_lock'] == 0) ? 'lock' : 'unlock') ."&song_id=". $songrow[$j]['song_id'])) .'">'. (($songrow[$j]['song_lock'] == 0) ? $lang['Lock'] : $lang['Unlock']) .'</a>' : '', 'IP' => ($userdata['user_level'] == ADMIN) ? $lang['IP_Address'] . ': <a href="http://www.nic.com/cgi-bin/whois.cgi?query=' . $song_user_ip . '" target="_blank">' . $song_user_ip .'</a><br />' : '', --- 1530,1540 ---- 'COMMENTS' => ($music_config['comment'] == 1) ? ( '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_comment&song_id=". $songrow[$j]['song_id'])) . '">' . $songrow[$j]['comments'] . '</a>' ) : '', ! 'EDIT' => ( ( $auth_data_items['edit'] and ($songrow[$j]['song_user_id'] == $userdata['user_id']) ) or ($auth_data_items['moderator'] and ($thiscat_items['cat_edit_level'] != MUSIC_ADMIN) ) or ($userdata['user_level'] == ADMIN) ) ? '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_edit&song_id=". $songrow[$j]['song_id'])) . '">' . $lang['Edit_song'] . '</a>' : '', ! 'DELETE' => ( ( $auth_data_items['delete'] and ($songrow[$j]['song_user_id'] == $userdata['user_id']) ) or ($auth_data_items['moderator'] and ($thiscat_items['cat_delete_level'] != MUSIC_ADMIN) ) or ($userdata['user_level'] == ADMIN) ) ? '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_delete&song_id=". $songrow[$j]['song_id'])) . '">' . $lang['Delete_song'] . '</a>' : '', ! 'MOVE' => ($auth_data_items['moderator']) ? '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_modcp&mode=move&song_id=". $songrow[$j]['song_id'])) .'">'. $lang['Move'] .'</a>' : '', ! 'LOCK' => ($auth_data_items['moderator']) ? '<a href="'. mx_append_sid(this_mo_mxurl("music_mode=music_modcp&mode=". (($songrow[$j]['song_lock'] == 0) ? 'lock' : 'unlock') ."&song_id=". $songrow[$j]['song_id'])) .'">'. (($songrow[$j]['song_lock'] == 0) ? $lang['Lock'] : $lang['Unlock']) .'</a>' : '', 'IP' => ($userdata['user_level'] == ADMIN) ? $lang['IP_Address'] . ': <a href="http://www.nic.com/cgi-bin/whois.cgi?query=' . $song_user_ip . '" target="_blank">' . $song_user_ip .'</a><br />' : '', *************** *** 1566,1574 **** $music_jumpbox = '<form name="jumpbox" action="'. mx_append_sid(this_mo_mxurl("music_mode=music_cat")) .'" method="get">'; $music_jumpbox .= $lang['Jump_to'] . ': <select name="cat_id" onChange="forms[\'jumpbox\'].submit()">'; ! for ($i = 0; $i < count($catrows); $i++) { ! $music_jumpbox .= '<option value="'. $catrows[$i]['cat_id'] .'"'; ! $music_jumpbox .= ($catrows[$i]['cat_id'] == $cat_id) ? 'selected="selected"' : ''; ! $music_jumpbox .= '>' . $catrows[$i]['cat_title'] .'</option>'; } $music_jumpbox .= '</select>'; --- 1566,1574 ---- $music_jumpbox = '<form name="jumpbox" action="'. mx_append_sid(this_mo_mxurl("music_mode=music_cat")) .'" method="get">'; $music_jumpbox .= $lang['Jump_to'] . ': <select name="cat_id" onChange="forms[\'jumpbox\'].submit()">'; ! for ($i = 0; $i < count($catrows_items); $i++) { ! $music_jumpbox .= '<option value="'. $catrows_items[$i]['cat_id'] .'"'; ! $music_jumpbox .= ($catrows_items[$i]['cat_id'] == $cat_id) ? 'selected="selected"' : ''; ! $music_jumpbox .= '>' . $catrows_items[$i]['cat_title'] .'</option>'; } $music_jumpbox .= '</select>'; |
|
From: FlorinCB <ory...@us...> - 2008-09-17 20:32:10
|
Update of /cvsroot/mxbb/mx_music/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26934/templates/_core Modified Files: music_index_body.tpl Log Message: Fixes and phpBB images Index: music_index_body.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_music/templates/_core/music_index_body.tpl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** music_index_body.tpl 10 Sep 2008 13:55:50 -0000 1.6 --- music_index_body.tpl 18 Sep 2008 03:31:37 -0000 1.7 *************** *** 56,72 **** <span class="corners-bottom"><span></span></span> </div></div> ! <table width="100%" cellspacing="0" cellpadding="2" border="0"> <tr> - <td><span class="gensmall"> - <!-- BEGIN switch_user_logged_in --> - {LAST_VISIT_DATE}<br /> - <!-- END switch_user_logged_in --> - {CURRENT_TIME}<br /> - </span> - </tr> - <tr> - <td> - </td> <td class="nav" width="100%"> <span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a> {NAV_SEP} <a class="nav" href="{U_MUSIC}">{L_MUSIC}</a> {U_NAV_CAT_PARENT} {NAV_SEP} </span> --- 56,62 ---- <span class="corners-bottom"><span></span></span> </div></div> ! <br /> <table width="100%" cellspacing="0" cellpadding="2" border="0"> <tr> <td class="nav" width="100%"> <span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a> {NAV_SEP} <a class="nav" href="{U_MUSIC}">{L_MUSIC}</a> {U_NAV_CAT_PARENT} {NAV_SEP} </span> |
Update of /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver/images/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26934/phpbb2/templates/subSilver/images/lang_english Added Files: download.gif download_all.gif icon_contact_aim.gif icon_contact_email.gif icon_contact_icq.gif icon_contact_jabber.gif icon_contact_msnm.gif icon_contact_pm.gif icon_contact_www.gif icon_contact_yahoo.gif icon_ip.gif icon_post_delete.gif icon_post_edit.gif icon_post_info.gif icon_post_quote.gif icon_post_report.gif icon_user_offline.gif icon_user_online.gif icon_user_profile.gif icon_user_search.gif icon_user_warn.gif upload_song.gif Log Message: Fixes and phpBB images --- NEW FILE: icon_contact_jabber.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_warn.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_online.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_email.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_yahoo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_ip.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_aim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_www.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_info.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_song.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_msnm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_delete.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_report.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_icq.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_post_quote.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_offline.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_contact_pm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download_all.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_user_search.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26934/phpbb2/templates/subSilver/images Added Files: forum_link.gif forum_read.gif forum_read_locked.gif forum_read_subforum.gif forum_unread.gif forum_unread_locked.gif forum_unread_subforum.gif icon_mini_music.gif icon_minipost.gif icon_minipost_new.gif no_image.gif topic_moved.gif topic_read.gif topic_read_hot.gif topic_read_hot_mine.gif topic_read_locked.gif topic_read_locked_mine.gif topic_read_mine.gif topic_unread.gif topic_unread_hot.gif topic_unread_hot_mine.gif topic_unread_locked.gif topic_unread_locked_mine.gif topic_unread_mine.gif upload_bar.gif Log Message: Fixes and phpBB images --- NEW FILE: forum_unread.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_unread_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_music.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_hot.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_unread_subforum.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_hot_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_minipost.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_locked_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_read_locked_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_read.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_link.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_moved.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_bar.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_read_locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: forum_read_subforum.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: no_image.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_minipost_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_hot_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_mine.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unread_hot.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-09-17 20:30:44
|
Update of /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver/images/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26497/lang_english Log Message: Directory /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver/images/lang_english added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-17 20:30:32
|
Update of /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26451/images Log Message: Directory /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver/images added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-17 20:30:12
|
Update of /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv26288/subSilver Log Message: Directory /cvsroot/mxbb/mx_music/phpbb2/templates/subSilver added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-17 20:29:59
|
Update of /cvsroot/mxbb/mx_music/phpbb2/templates In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25973/templates Log Message: Directory /cvsroot/mxbb/mx_music/phpbb2/templates added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-09-17 17:58:47
|
Update of /cvsroot/mxbb/mx_smartor/album_mod/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv24955 Modified Files: album_functions.php Log Message: found big bug when phpbb2 Index: album_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/includes/album_functions.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** album_functions.php 1 Sep 2008 01:11:48 -0000 1.6 --- album_functions.php 18 Sep 2008 00:58:43 -0000 1.7 *************** *** 172,176 **** function album_get_profile_url($mode, $user_id, $username = false, $user_color = false) { ! global $lang, $userdata; switch (PORTAL_BACKEND) --- 172,176 ---- function album_get_profile_url($mode, $user_id, $username = false, $user_color = false) { ! global $lang, $userdata, $theme; switch (PORTAL_BACKEND) *************** *** 194,203 **** { $user_colour = $theme['fontcolor1']; ! $topic_poster_style = 'style="font-weight : bold;"'; } $profile_url = ''; ! $full_url = ($user_id == ANONYMOUS) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<span ' . $topic_poster_style . '>' . $username . '</span>'; break; --- 194,203 ---- { $user_colour = $theme['fontcolor1']; ! $user_style = 'style="font-weight : bold;"'; } $profile_url = ''; ! $full_url = ($user_id == ANONYMOUS) ? '<span ' . $user_style . '>' . $lang['Guest'] . '</span>' : '<span ' . $topic_poster_style . '>' . $username . '</span>'; break; *************** *** 222,226 **** { $user_colour = $theme['fontcolor1']; ! $topic_poster_style = 'style="font-weight : bold;"'; } --- 222,226 ---- { $user_colour = $theme['fontcolor1']; ! $user_style = 'style="font-weight : bold;"'; } *************** *** 229,233 **** { $profile_url = mx3_append_sid(PHPBB_URL . "profile.$phpEx", 'mode=viewprofile&u=' . (int) $user_id); ! $full_url = '<a href="' . $profile_url . '"><span ' . $topic_poster_style . '>' . $username . '</span></a>'; } else --- 229,233 ---- { $profile_url = mx3_append_sid(PHPBB_URL . "profile.$phpEx", 'mode=viewprofile&u=' . (int) $user_id); ! $full_url = '<a href="' . $profile_url . '"><span ' . $user_style . '>' . $username . '</span></a>'; } else |
|
From: FlorinCB <ory...@us...> - 2008-09-17 17:56:57
|
Update of /cvsroot/mxbb/mx_music/music_box/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv24128 Modified Files: music_constants.php music_functions.php Log Message: found big bug when phpbb2 Index: music_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/includes/music_functions.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** music_functions.php 12 Sep 2008 05:17:57 -0000 1.6 --- music_functions.php 18 Sep 2008 00:56:53 -0000 1.7 *************** *** 172,176 **** function music_get_profile_url($mode, $user_id, $username = false, $user_color = false) { ! global $lang, $userdata; switch (PORTAL_BACKEND) --- 172,176 ---- function music_get_profile_url($mode, $user_id, $username = false, $user_color = false) { ! global $lang, $userdata, $phpEx, $theme; switch (PORTAL_BACKEND) *************** *** 194,203 **** { $user_colour = $theme['fontcolor1']; ! $topic_poster_style = 'style="font-weight : bold;"'; } $profile_url = ''; ! $full_url = (($user_id == ANONYMOUS) || ($user_id == MUSIC_GUEST)) ? '<span ' . $topic_poster_style . '>' . $lang['Guest'] . '</span>' : '<span ' . $topic_poster_style . '>' . $username . '</span>'; break; --- 194,203 ---- { $user_colour = $theme['fontcolor1']; ! $user_style = 'style="font-weight : bold;"'; } $profile_url = ''; ! $full_url = (($user_id == ANONYMOUS) || ($user_id == MUSIC_GUEST)) ? '<span ' . $user_style . '>' . $lang['Guest'] . '</span>' : '<span ' . $topic_poster_style . '>' . $username . '</span>'; break; *************** *** 209,213 **** $username = ($username) ? $username : $music_userdata['username']; ! if ($music_userdata['user_level'] == ADMIN) { $user_color = $theme['fontcolor3']; --- 209,213 ---- $username = ($username) ? $username : $music_userdata['username']; ! if ($music_userdata['user_level'] == ADMIN) { $user_color = $theme['fontcolor3']; *************** *** 222,226 **** { $user_colour = $theme['fontcolor1']; ! $topic_poster_style = 'style="font-weight : bold;"'; } --- 222,226 ---- { $user_colour = $theme['fontcolor1']; ! $user_style = 'style="font-weight : bold;"'; } *************** *** 228,233 **** if ($user_id && $user_id != ANONYMOUS) { ! $profile_url = mx3_append_sid(PHPBB_URL . "profile.$phpEx", 'mode=viewprofile&u=' . (int) $user_id); ! $full_url = '<a href="' . $profile_url . '"><span ' . $topic_poster_style . '>' . $username . '</span></a>'; } else --- 228,233 ---- if ($user_id && $user_id != ANONYMOUS) { ! $profile_url = mx_append_sid(PHPBB_URL . "profile.$phpEx?mode=viewprofile&u=" . (int) $user_id); ! $full_url = '<a href="' . $profile_url . '"><span ' . $user_style. '>' . $username . '</span></a>'; } else Index: music_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/includes/music_constants.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** music_constants.php 9 Sep 2008 03:28:44 -0000 1.8 --- music_constants.php 18 Sep 2008 00:56:53 -0000 1.9 *************** *** 16,21 **** if ( !MXBB_MODULE ) { ! define('PORTAL_URL', $portal_config['portal_url']); ! define('PHPBB_URL', PORTAL_URL); $mx_table_prefix = $table_prefix; --- 16,23 ---- if ( !MXBB_MODULE ) { ! $this_phpbb_url = str_replace("//", "/", $portal_config['portal_url'] . '/'); ! ! define('PORTAL_URL', $this_phpbb_url); ! define('PHPBB_URL', $this_phpbb_url); $mx_table_prefix = $table_prefix; |
|
From: FlorinCB <ory...@us...> - 2008-09-17 17:28:12
|
Update of /cvsroot/mxbb/mx_music In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11874 Modified Files: music.php Log Message: fix Index: music.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** music.php 10 Sep 2008 13:55:49 -0000 1.26 --- music.php 18 Sep 2008 00:28:07 -0000 1.27 *************** *** 109,114 **** */ ! mx_cache::load_file('bbcode'); ! mx_cache::load_file('functions_post'); } else if (@file_exists("./mcp.$phpEx")) // phpBB3 --- 109,116 ---- */ ! //mx_cache::load_file('bbcode'); ! //mx_cache::load_file('functions_post'); ! include_once($phpbb_root_path . "includes/bbcode.$phpEx"); ! include_once($phpbb_root_path . "includes/functions_post.$phpEx"); } else if (@file_exists("./mcp.$phpEx")) // phpBB3 |
|
From: FlorinCB <ory...@us...> - 2008-09-17 04:35:42
|
Update of /cvsroot/mxbb/core/templates/subsilver2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv30306 Modified Files: subsilver2.cfg Log Message: not fixed again Index: subsilver2.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/subsilver2/subsilver2.cfg,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** subsilver2.cfg 6 Sep 2008 04:44:01 -0000 1.6 --- subsilver2.cfg 17 Sep 2008 11:35:17 -0000 1.7 *************** *** 256,260 **** // Logo // ! $mx_images['mx_logo'] = "$current_template_theme_images/logo.gif";; // --- 256,260 ---- // Logo // ! $mx_images['mx_logo'] = "$current_template_theme_images/logo.gif"; // |
|
From: FlorinCB <ory...@us...> - 2008-09-17 04:20:04
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14691 Modified Files: common.php Log Message: well this make troble on php6 if it's not there untill phpBB2:: thing is removed Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.103 retrieving revision 1.104 diff -C2 -d -r1.103 -r1.104 *** common.php 17 Sep 2008 05:42:59 -0000 1.103 --- common.php 17 Sep 2008 11:19:53 -0000 1.104 *************** *** 34,38 **** //error_reporting(E_ALL & ~E_NOTICE); @ini_set( 'display_errors', '1' ); ! //error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.' . $phpEx); // For nice error output --- 34,38 ---- //error_reporting(E_ALL & ~E_NOTICE); @ini_set( 'display_errors', '1' ); ! error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.' . $phpEx); // For nice error output |