diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-12 02:52:50 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-12 02:52:50 +0000 |
commit | 693e26e2ad074f8cc9d37098a0568cd93ae30f52 (patch) | |
tree | 8588523335a337d0971df768da0456e325bb6b66 /lib/ui.lib.php | |
parent | 003619c52c0370f03b9edb466addaaebac13ce41 (diff) | |
download | ampache-693e26e2ad074f8cc9d37098a0568cd93ae30f52.tar.gz ampache-693e26e2ad074f8cc9d37098a0568cd93ae30f52.tar.bz2 ampache-693e26e2ad074f8cc9d37098a0568cd93ae30f52.zip |
commit of the patches from codeoverload to implement tagging, will not work without manual modification of database, yes.. this commit breaks things cope
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r-- | lib/ui.lib.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index 9cd78d94..68f92a50 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -208,6 +208,9 @@ function show_header() { function show_footer() { require_once Config::get('prefix') . '/templates/footer.inc.php'; + if ($_REQUEST['profiling']) { + Dba::show_profile(); + } } // show_footer |