From 27c6aa2b3bd3a27c0b15ab889d5fdcb13a2fc8d1 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Thu, 12 Oct 2006 18:20:59 +0000 Subject: minor tweak to make the m3us a little nicer looking --- lib/class/stream.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/class/stream.class.php b/lib/class/stream.class.php index 56e701d8..ea9baf9f 100644 --- a/lib/class/stream.class.php +++ b/lib/class/stream.class.php @@ -109,7 +109,7 @@ class Stream { $song->format_song(); if ($song->type == ".flac") { $song->type = ".ogg"; } $song_name = $song->f_artist_full . " - " . $song->title . "." . $song->type; - echo "#EXTINF:$song->time,$song_name\n"; + echo "#EXTINF:$song->time," . $song->f_artist_full . " - " . $song->title . "\n"; $sess = $_COOKIE[libglue_param('sess_name')]; if($GLOBALS['user']->prefs['play_type'] == 'downsample') { $ds = $GLOBALS['user']->prefs['sample_rate']; -- cgit