diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-13 00:32:57 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-13 00:32:57 +0000 |
commit | 6eac7541290086509cf1531a48ab2734ac48081a (patch) | |
tree | a4e1350fdcf765fb8a9d85ff0c513a296fdec946 /templates/header.inc.php | |
parent | 2939f419e15589ab9fb73c6fd197e577238c6677 (diff) | |
download | ampache-6eac7541290086509cf1531a48ab2734ac48081a.tar.gz ampache-6eac7541290086509cf1531a48ab2734ac48081a.tar.bz2 ampache-6eac7541290086509cf1531a48ab2734ac48081a.zip |
added in the playlist bar, and the auto-loading of a tmp playlist per session
Diffstat (limited to 'templates/header.inc.php')
-rw-r--r-- | templates/header.inc.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/header.inc.php b/templates/header.inc.php index 3ce776bf..08cbaa6c 100644 --- a/templates/header.inc.php +++ b/templates/header.inc.php @@ -64,12 +64,15 @@ if (Config::get('use_rss')) { ?> </a> </div><!--End topbarleft --> <div id="topbarright"> + <?php show_box_top(); ?> <a href="http://www.ampache.org/index.php">Ampache v.<?php echo Config::get('version'); ?></a><br /> <b><?php echo _('You are currently logged in as') . " " . $GLOBALS['user']->fullname; ?></b> + <div id="topbar-playlist"><?php require_once Config::get('prefix') . '/templates/show_playlist_bar.inc.php'; ?></div> + <?php show_box_bottom(); ?> </div> <!-- End topbarright --> </div><!-- End topbar --> <div id="sidebar"><!-- This is the sidebar --> - <?php require_once(Config::get('prefix') . '/templates/sidebar.inc.php'); ?> + <?php require_once Config::get('prefix') . '/templates/sidebar.inc.php'; ?> </div><!-- End sidebar --> <div id="content"> <!-- I hate IE... --> |