|
From: Florin C B. <ory...@us...> - 2013-07-02 23:12:41
|
Update of /cvsroot/mxbb/mx_shotcast/config In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv10283/config Modified Files: config.php Log Message: Index: config.php =================================================================== RCS file: /cvsroot/mxbb/mx_shotcast/config/config.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** config.php 2 Jul 2013 12:56:43 -0000 1.3 --- config.php 2 Jul 2013 23:12:38 -0000 1.4 *************** *** 341,352 **** // Port of the server where the play lists are located. Leave blank if they // are on the same server as the caster ip. - $playlist_port = isset($portal_config['play_port']) ? (int) trim($portal_config['play_port']) : ""; - //If other then port 80 where the play lists are located. Leave blank if they $server_port = ($portal_config['server_port'] <> 80) ? ':' . (int) trim($portal_config['server_port']) . '/' : '/'; ! // ! // Logo config parameters ! // // Logo should be put in the root of "/logos". U can use any format tha works --- 341,351 ---- // Port of the server where the play lists are located. Leave blank if they // are on the same server as the caster ip. //If other then port 80 where the play lists are located. Leave blank if they $server_port = ($portal_config['server_port'] <> 80) ? ':' . (int) trim($portal_config['server_port']) . '/' : '/'; + $playlist_port = isset($radio_config['play_port']) ? (int) trim($radio_config['play_port']) : $server_port; ! /* ! * Logo config parameters ! */ // Logo should be put in the root of "/logos". U can use any format tha works *************** *** 368,377 **** /************************ IF U DON'T KNOW WHAT U ARE DOING *****************/ ! // ! // Advanced config parameters ! // // Use Curl to get cd cover data (yes/no) ! $curl = isset($portal_config['allow_curl']) ? $shotcast_config['allow_curl'] : false; // If both web server and icecast are behind a router and the web server needs --- 367,376 ---- /************************ IF U DON'T KNOW WHAT U ARE DOING *****************/ ! /* ! * Advanced config parameters ! */ // Use Curl to get cd cover data (yes/no) ! $curl = isset($shotcast_config['allow_curl']) ? $shotcast_config['allow_curl'] : false; // If both web server and icecast are behind a router and the web server needs |