|
From: Florin C B. <ory...@us...> - 2010-08-21 00:28:20
|
Update of /cvsroot/mxbb/mx_music/music_box/modules In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv20585/modules Modified Files: music_page.php Log Message: Index: music_page.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_page.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** music_page.php 20 Aug 2010 21:15:17 -0000 1.14 --- music_page.php 21 Aug 2010 00:28:12 -0000 1.15 *************** *** 282,286 **** $url_video = $url_download; } ! else if (( $song_filetype == 'flv') || (str_replace('rtmp://', '', $station_url))) { /* --- 282,303 ---- $url_video = $url_download; } ! else if ( ($song_filetype == 'ogg') or ($song_filetype == '.ogg') ) ! { ! $template->assign_block_vars('ogg', array()); ! ! if ( $thisstation['song_url'] == '' ) ! { ! $url_download = mx_append_sid(this_mo_mxurl("music_mode=music_download&song_id=$song_id")); ! $url_video = $url_download; ! } ! else ! { ! $lang['Download'] = ( !empty($lang['Listen']) ? $lang['Listen'] : 'Listen URL' ); ! $url_download = $thissong['song_url']; ! $url_video = $url_download; ! $media_width = '480'; ! } ! } ! else if (($song_filetype == 'flv') || (str_replace('rtmp://', 'rtmp://', $song_url))) { /* *************** *** 302,306 **** $url_video = $music_root_path . 'modplayer.swf'; $mime_type= 'audio/x-' . $song_filetype; //application/x-mplayer2 ! $row_type = 'mod'; } else if ( ( $song_filetype == 's3m' ) || ( $song_filetype == 'ult' ) || ( $song_filetype == '.xm' ) ) --- 319,323 ---- $url_video = $music_root_path . 'modplayer.swf'; $mime_type= 'audio/x-' . $song_filetype; //application/x-mplayer2 ! $row_type = 'mod'; } else if ( ( $song_filetype == 's3m' ) || ( $song_filetype == 'ult' ) || ( $song_filetype == '.xm' ) ) |