summaryrefslogtreecommitdiffstats
path: root/tv.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-01-07 20:35:49 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-01-07 20:35:49 +0000
commitb6cfe134badb2d4393e9081b13b2dfca011ed736 (patch)
tree4f6213e626fa90b4b280b5e663e791559c4a7f8f /tv.php
parent90d2acbc54b24b6e8207e12f1cabcbc7541ca447 (diff)
downloadampache-b6cfe134badb2d4393e9081b13b2dfca011ed736.tar.gz
ampache-b6cfe134badb2d4393e9081b13b2dfca011ed736.tar.bz2
ampache-b6cfe134badb2d4393e9081b13b2dfca011ed736.zip
* Re-worked Main page of Ampache, adding Album of the moment.
* Moved stats to /stats.php page * Fixed logic error in resize that could cause nothign to display if resize was on, but it still failed * Fixed Upload Album art from Find Album Art * Added Menu to the TV page * Fixed logic error that showed localplay if user had access regardless of global config * Changed default action of browse.php to song browse
Diffstat (limited to 'tv.php')
-rw-r--r--tv.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tv.php b/tv.php
index 2dc91d88..cec7f286 100644
--- a/tv.php
+++ b/tv.php
@@ -32,6 +32,8 @@ if (!conf('allow_democratic_playback')) {
/* Clean up the stuff we need */
$action = scrub_in($_REQUEST['action']);
+show_template('header');
+
switch ($action) {
case 'create_playlist':
/* Only Admins Here */
@@ -91,5 +93,6 @@ switch ($action) {
break;
} // end switch on action
+show_footer();
?>