diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-04-08 05:58:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-04-08 05:58:05 +0000 |
commit | 2b55e30467f5ccdf9324b0377c419c5681f4c215 (patch) | |
tree | 16c2f63178ff762a673face6abb7fe584b680b36 /templates/header.inc | |
parent | 941afedab85ffd77a83188ca09a888e0603fae72 (diff) | |
download | ampache-2b55e30467f5ccdf9324b0377c419c5681f4c215.tar.gz ampache-2b55e30467f5ccdf9324b0377c419c5681f4c215.tar.bz2 ampache-2b55e30467f5ccdf9324b0377c419c5681f4c215.zip |
This update includes a full rewrite of the Localplay code, only update
to this version if you don't care about losing a lot of functionality
while I am still finishing it up. Also the only working localplay
method is currently MPD. UPDATE AT YOUR OWN RISK!
Diffstat (limited to 'templates/header.inc')
-rw-r--r-- | templates/header.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/header.inc b/templates/header.inc index 1277c4bc..b2839fec 100644 --- a/templates/header.inc +++ b/templates/header.inc @@ -38,6 +38,7 @@ if (conf('use_rss')) { ?> </head> <body> <script src="<?php echo $web_path; ?>/lib/general.js" language="javascript" type="text/javascript"></script> +<script src="<?php echo $web_path; ?>/modules/kajax/ajax.js" language="javascript" type="text/javascript"></script> <div id="maincontainer"> <div id="topbar"><!-- This is the topbar row --> <div id="topbarleft"> @@ -58,5 +59,10 @@ if (conf('use_rss')) { ?> </div><!-- End topbar --> <div id="sidebar"><!-- This is the sidebar --> <?php require_once(conf('prefix') . '/templates/sidebar.inc.php'); ?> + <?php if ($localplay = init_localplay()) { ?> + <?php require_once(conf('prefix') . '/templates/show_localplay_control.inc.php'); ?> + <?php } ?> </div><!-- End sidebar --> <div id="content"> +<!-- I hate IE... --> +<table><tr><td> |