summaryrefslogtreecommitdiffstats
path: root/playlist.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 01:22:50 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-01-26 01:22:50 -0500
commit04aa79b53c38095d4727f4d850e191c64d99352f (patch)
treec6ac7dce0306a6f2fa8fd846b6f001c5fb35a943 /playlist.php
parenteaa44dcd0938ad48f4a9f863b24ca5d3a318ae10 (diff)
downloadampache-04aa79b53c38095d4727f4d850e191c64d99352f.tar.gz
ampache-04aa79b53c38095d4727f4d850e191c64d99352f.tar.bz2
ampache-04aa79b53c38095d4727f4d850e191c64d99352f.zip
Move show_{footer,header}() from ui.lib.php to UI
Diffstat (limited to 'playlist.php')
-rw-r--r--playlist.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/playlist.php b/playlist.php
index 2b6dba05..b91f0136 100644
--- a/playlist.php
+++ b/playlist.php
@@ -35,7 +35,7 @@ if ($_REQUEST['action'] == 'delete_playlist') {
}
}
-show_header();
+UI::show_header();
/* Switch on the action passed in */
@@ -162,5 +162,5 @@ switch ($_REQUEST['action']) {
break;
} // switch on the action
-show_footer();
+UI::show_footer();
?>