diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-28 23:35:04 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-28 23:35:04 +0000 |
commit | 1a22c7c3170af9345b57e51a6b007983e3ecd6e5 (patch) | |
tree | 7cd2f218b7001afc9d8d4af89e4f753e161f2e6e /lib/class/stream.class.php | |
parent | d6e28b752f3f04e418a4c27f37fa67b76596d5ec (diff) | |
download | ampache-1a22c7c3170af9345b57e51a6b007983e3ecd6e5.tar.gz ampache-1a22c7c3170af9345b57e51a6b007983e3ecd6e5.tar.bz2 ampache-1a22c7c3170af9345b57e51a6b007983e3ecd6e5.zip |
fixed the pls length issue
Diffstat (limited to 'lib/class/stream.class.php')
-rw-r--r-- | lib/class/stream.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/stream.class.php b/lib/class/stream.class.php index 254a0fd4..d7b066bd 100644 --- a/lib/class/stream.class.php +++ b/lib/class/stream.class.php @@ -175,7 +175,7 @@ class Stream { $song_url = $song->get_url(); echo "File" . $i . "=$song_url\n"; echo "Title" . $i . "=$song_name\n"; - echo "Length" . $i . "=-1\n"; + echo "Length" . $i . "=$song->time\n"; } // end foreach songs /* Foreach Additional URLs */ |