diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-14 03:23:42 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-14 03:23:42 +0000 |
commit | 52d8985a27674da0dbd6d85a055bb07555917c23 (patch) | |
tree | 723a56bd09c1de581495f32b2341c50c5ef7b948 | |
parent | cdb41b515a8989e61446118d54f4f25b00bb5702 (diff) | |
download | ampache-52d8985a27674da0dbd6d85a055bb07555917c23.tar.gz ampache-52d8985a27674da0dbd6d85a055bb07555917c23.tar.bz2 ampache-52d8985a27674da0dbd6d85a055bb07555917c23.zip |
fix a display issue when streaming
-rwxr-xr-x | docs/CHANGELOG | 2 | ||||
-rw-r--r-- | lib/class/song.class.php | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index a6460d14..c9af9d3b 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,8 @@ -------------------------------------------------------------------------- v.3.3.3-Beta1 + - Fixed display issue with players that ignore EXTINF in m3us + (Thx AlxRogan) - Added Refreshing to the Recently Played menu at the same time it refresh the now playing on the index page - Fixed a cataloging issue that was using a round about way of diff --git a/lib/class/song.class.php b/lib/class/song.class.php index 8b9ceb64..80421e49 100644 --- a/lib/class/song.class.php +++ b/lib/class/song.class.php @@ -745,7 +745,7 @@ class Song { $web_path = preg_replace("/:\d+/",":$port",$web_path); } - $url = $web_path . "/play/index.php?song=$song_id&uid=$username$session_string$ds_string&name=$song_name"; + $url = $web_path . "/play/index.php?song=$song_id&uid=$username$session_string$ds_string&name=/$song_name"; return $url; |