diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-06-04 12:10:13 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-06-04 12:23:13 -0400 |
commit | a90c66680145a0502f452ccd6d743e77159a4837 (patch) | |
tree | 3050e7dfba9cb15d399d20ae79b8bd0710b87e40 /lib | |
parent | d2f3ef1ab980e20a2c82663e5b3d1ed96ed8fad1 (diff) | |
download | ampache-a90c66680145a0502f452ccd6d743e77159a4837.tar.gz ampache-a90c66680145a0502f452ccd6d743e77159a4837.tar.bz2 ampache-a90c66680145a0502f452ccd6d743e77159a4837.zip |
Cosmetic cleanup of the ASX output
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/stream_playlist.class.php | 6 |
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"; } |