CC-6140: Switch to Windows linebreaks for stream M3U

This commit is contained in:
Albert Santoni 2015-10-21 16:25:59 -04:00
parent 3b81ea02c8
commit a4b42344dd
1 changed files with 3 additions and 3 deletions

View File

@ -1510,14 +1510,14 @@ class ApiController extends Zend_Controller_Action
header('Content-Type: application/x-mpegurl');
header('Content-Disposition: attachment; filename=stream.m3u');
$m3uFile = "#EXTM3U\n\n";
$m3uFile = "#EXTM3U\r\n\r\n"; //Windows linebreaks eh
$stationName = Application_Model_Preference::GetStationName();
$streamData = Application_Model_StreamSetting::getEnabledStreamData();
foreach ($streamData as $stream) {
$m3uFile .= "#EXTINF,".$stationName." - " . strtoupper($stream['codec']) . "\n";
$m3uFile .= $stream['url'] . "\n\n";
$m3uFile .= "#EXTINF,".$stationName." - " . strtoupper($stream['codec']) . "\r\n";
$m3uFile .= $stream['url'] . "\r\n\r\n";
}
echo $m3uFile;
}