summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-12 18:20:59 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-10-12 18:20:59 +0000
commit27c6aa2b3bd3a27c0b15ab889d5fdcb13a2fc8d1 (patch)
tree673f1b15e0395a6825da274bbc6cbd0c8b4ff0b6
parente67cf68ba9ab9a959f389dc3424cf26713678a3c (diff)
downloadampache-27c6aa2b3bd3a27c0b15ab889d5fdcb13a2fc8d1.tar.gz
ampache-27c6aa2b3bd3a27c0b15ab889d5fdcb13a2fc8d1.tar.bz2
ampache-27c6aa2b3bd3a27c0b15ab889d5fdcb13a2fc8d1.zip
minor tweak to make the m3us a little nicer looking
-rw-r--r--lib/class/stream.class.php2
1 files changed, 1 insertions, 1 deletions
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'];