summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-06-04 12:10:13 -0400
committerPaul Arthur <paul.arthur@flowerysong.com>2013-06-04 12:23:13 -0400
commita90c66680145a0502f452ccd6d743e77159a4837 (patch)
tree3050e7dfba9cb15d399d20ae79b8bd0710b87e40
parentd2f3ef1ab980e20a2c82663e5b3d1ed96ed8fad1 (diff)
downloadampache-a90c66680145a0502f452ccd6d743e77159a4837.tar.gz
ampache-a90c66680145a0502f452ccd6d743e77159a4837.tar.bz2
ampache-a90c66680145a0502f452ccd6d743e77159a4837.zip
Cosmetic cleanup of the ASX output
-rw-r--r--lib/class/stream_playlist.class.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/class/stream_playlist.class.php b/lib/class/stream_playlist.class.php
index e0d2e39e..ca9c01cb 100644
--- a/lib/class/stream_playlist.class.php
+++ b/lib/class/stream_playlist.class.php
@@ -287,8 +287,8 @@ class Stream_Playlist {
*/
public function create_asx() {
- echo '<ASX version = "3.0" BANNERBAR="AUTO">' . "\n";
- echo "<TITLE>Ampache ASX Playlist</TITLE>";
+ echo '<ASX VERSION="3.0" BANNERBAR="auto">' . "\n";
+ echo "<TITLE>Ampache ASX Playlist</TITLE>\n";
foreach ($this->urls as $url) {
echo "<ENTRY>\n";
@@ -299,7 +299,7 @@ class Stream_Playlist {
echo "\t\t" . '<PARAM NAME="Album" Value="' . scrub_out($url->album) . '" />' . "\n";
echo "\t\t" . '<PARAM NAME="Composer" Value="' . scrub_out($url->author) . '" />' . "\n";
echo "\t\t" . '<PARAM NAME="Prebuffer" Value="false" />' . "\n";
- echo '<REF HREF = "' . $url->url . '" />' . "\n";
+ echo '<REF HREF="' . $url->url . '" />' . "\n";
echo "</ENTRY>\n";
}