diff options
Diffstat (limited to 'lib/class/stream_playlist.class.php')
-rw-r--r-- | lib/class/stream_playlist.class.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/class/stream_playlist.class.php b/lib/class/stream_playlist.class.php index 0892386a..a8e66c62 100644 --- a/lib/class/stream_playlist.class.php +++ b/lib/class/stream_playlist.class.php @@ -338,14 +338,14 @@ class Stream_Playlist { $xml['track']['album'] = $url->album; } - $result .= xmlData::keyed_array($xml, true); + $result .= XML_Data::keyed_array($xml, true); } // end foreach - xmlData::set_type('xspf'); - echo xmlData::header(); + XML_Data::set_type('xspf'); + echo XML_Data::header(); echo $result; - echo xmlData::footer(); + echo XML_Data::footer(); } // create_xspf |