summaryrefslogtreecommitdiffstats
path: root/templates/show_localplay.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-24 03:15:05 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-24 03:15:05 +0000
commitae70bce26c2f39da93c85a082602d58dcf13652e (patch)
tree0bf530733d44216846ad39f245bc238baf174cee /templates/show_localplay.inc.php
parentcb12b4a8c948d901f6851a7eae032827b423704d (diff)
downloadampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.gz
ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.tar.bz2
ampache-ae70bce26c2f39da93c85a082602d58dcf13652e.zip
more updates to the theme stuff
Diffstat (limited to 'templates/show_localplay.inc.php')
-rw-r--r--templates/show_localplay.inc.php11
1 files changed, 4 insertions, 7 deletions
diff --git a/templates/show_localplay.inc.php b/templates/show_localplay.inc.php
index 8abc788a..72fa4c51 100644
--- a/templates/show_localplay.inc.php
+++ b/templates/show_localplay.inc.php
@@ -25,18 +25,15 @@ $localplay = init_localplay();
$songs = $localplay->get();
?>
-<div class="text-box">
-<span class="header2"><?php echo ucfirst($localplay->type); ?> <?php echo _('Localplay'); ?></span>
+<?php show_box_top(ucfirst($localplay->type) . ' ' . _('Localplay')); ?>
<ul class="text-action">
<?php if ($localplay->has_function('delete_all')) { ?>
<li><a href="<?php echo $web_path; ?>/localplay.php?action=delete_all"><?php echo _('Clear Playlist'); ?></a></li>
<?php } ?>
</ul>
-</div>
-<br />
<?php require_once(conf('prefix') . '/templates/show_localplay_status.inc.php'); ?>
-<br />
-<div class="text-box">
+<?php show_box_bottom(); ?>
+<?php show_box_top(_('Current Playlist')); ?>
<table class="border" cellspacing="0" border="0">
<tr class="table-header">
<th><?php echo _('Track'); ?></th>
@@ -61,4 +58,4 @@ $songs = $localplay->get();
</tr>
<?php } ?>
</table>
-</div>
+<?php show_box_bottom(); ?>