diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-05 06:05:18 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-05 06:05:18 +0000 |
commit | edf482ff3d21c84d99f25b84884563a8781fa7ae (patch) | |
tree | 5518f19975dde4b63e87ad7a1d00ec9015911d7c /lib/ui.lib.php | |
parent | d24fe88905baf183892ed9fd757e698e56309904 (diff) | |
download | ampache-edf482ff3d21c84d99f25b84884563a8781fa7ae.tar.gz ampache-edf482ff3d21c84d99f25b84884563a8781fa7ae.tar.bz2 ampache-edf482ff3d21c84d99f25b84884563a8781fa7ae.zip |
moved back to a GPL flash player for 3.4 codebase, fixed some stream issues (non-m3u playlist types were failing) and tweaked the look of the /test.php page and fixed the xspf playlist generation
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r-- | lib/ui.lib.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index cbf3bde0..a1283841 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -1353,9 +1353,9 @@ function xml_get_header($type){ $header = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n" . "<playlist version = \"1\" xmlns=\"http://xspf.org/ns/0/\">\n ". "<title>Ampache XSPF Playlist</title>\n" . - "<creator>" . conf('site_title') . "</creator>\n" . - "<annotation>" . conf('site_title') . "</annotation>\n" . - "<info>". conf('web_path') ."</info>\n" . + "<creator>" . Config::get('site_title') . "</creator>\n" . + "<annotation>" . Config::get('site_title') . "</annotation>\n" . + "<info>". Config::get('web_path') ."</info>\n" . "<trackList>\n\n\n\n"; return $header; break; |