summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdocs/CHANGELOG2
-rw-r--r--lib/class/song.class.php2
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;