|
From: FlorinCB <ory...@us...> - 2008-09-09 07:04:37
|
Update of /cvsroot/mxbb/mx_music In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv16355 Modified Files: music.php music_flv.php music_lists.php Log Message: fix Index: music.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** music.php 9 Sep 2008 06:54:12 -0000 1.20 --- music.php 9 Sep 2008 07:04:31 -0000 1.21 *************** *** 206,210 **** // // --------------------- ! // Check $album_user_id // --------------------- if (isset ($_POST['user_id'])) --- 206,210 ---- // // --------------------- ! // Check $music_user_id // --------------------- if (isset ($_POST['user_id'])) *************** *** 494,498 **** // Write username of last poster // ---------------------------- ! $last_song_info .= $lang['Poster'] .': ' . album_get_profile_url('full', $lastrow['user_id'], $lastrow['username'], false); // ---------------------------- --- 494,498 ---- // Write username of last poster // ---------------------------- ! $last_song_info .= $lang['Poster'] .': ' . music_get_profile_url('full', $lastrow['user_id'], $lastrow['username'], false); // ---------------------------- Index: music_lists.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_lists.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** music_lists.php 9 Sep 2008 06:54:12 -0000 1.6 --- music_lists.php 9 Sep 2008 07:04:32 -0000 1.7 *************** *** 51,55 **** // // --------------------- ! // Check $album_user_id // --------------------- if (isset ($_POST['user_id'])) --- 51,55 ---- // // --------------------- ! // Check $music_user_id // --------------------- if (isset ($_POST['user_id'])) *************** *** 219,223 **** // Write username of last poster // ---------------------------- ! $last_song_info .= $lang['Poster'] .': ' . album_get_profile_url('full', $lastrow['user_id'], $lastrow['username'], false); // ---------------------------- --- 219,223 ---- // Write username of last poster // ---------------------------- ! $last_song_info .= $lang['Poster'] .': ' . music_get_profile_url('full', $lastrow['user_id'], $lastrow['username'], false); // ---------------------------- *************** *** 434,438 **** else { ! $top_poster = album_get_profile_url('full', $topsongrow[$j]['user_id'], $topsongrow[$j]['username'], false); } --- 434,438 ---- else { ! $top_poster = music_get_profile_url('full', $topsongrow[$j]['user_id'], $topsongrow[$j]['username'], false); } Index: music_flv.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_flv.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** music_flv.php 9 Sep 2008 06:54:12 -0000 1.6 --- music_flv.php 9 Sep 2008 07:04:31 -0000 1.7 *************** *** 396,400 **** */ ! $poster = album_get_profile_url('full', $thissong['user_id'], $thissong['username'], false); --- 396,400 ---- */ ! $poster = music_get_profile_url('full', $thissong['user_id'], $thissong['username'], false); |