diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 01:22:50 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 01:22:50 -0500 |
commit | 04aa79b53c38095d4727f4d850e191c64d99352f (patch) | |
tree | c6ac7dce0306a6f2fa8fd846b6f001c5fb35a943 /lib/ui.lib.php | |
parent | eaa44dcd0938ad48f4a9f863b24ca5d3a318ae10 (diff) | |
download | ampache-04aa79b53c38095d4727f4d850e191c64d99352f.tar.gz ampache-04aa79b53c38095d4727f4d850e191c64d99352f.tar.bz2 ampache-04aa79b53c38095d4727f4d850e191c64d99352f.zip |
Move show_{footer,header}() from ui.lib.php to UI
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r-- | lib/ui.lib.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index 72b87f45..00f7eb27 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -75,30 +75,6 @@ function return_referer() { } // return_referer /** - * show_header - * This shows the header.inc.php, it may do something - * more in the future - */ -function show_header() { - - require_once Config::get('prefix') . '/templates/header.inc.php'; - -} // show_header - -/** - * show_footer - * shows the footer of the page - */ -function show_footer() { - - require_once Config::get('prefix') . '/templates/footer.inc.php'; - if (isset($_REQUEST['profiling'])) { - Dba::show_profile(); - } - -} // show_footer - -/** * get_location * This function gets the information about a person's current location. * This is used for A) sidebar highlighting & submenu showing and B) titlebar |