summaryrefslogtreecommitdiffstats
path: root/templates/show_playlists.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_playlists.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_playlists.inc.php')
-rw-r--r--templates/show_playlists.inc.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/show_playlists.inc.php b/templates/show_playlists.inc.php
index a18cb651..ce679928 100644
--- a/templates/show_playlists.inc.php
+++ b/templates/show_playlists.inc.php
@@ -25,9 +25,9 @@
* /playlists.php $type is always passed
*/
$web_path = conf('web_path');
-
+$title = $type . ' ' . _('Playlists');
?>
-<h3><?php echo $type . ' ' . _('Playlists'); ?></h3>
+<?php show_box_top($title); ?>
<table class="tabledata" cellspacing="0" cellpadding="0" border="0"> <!-- Playlist Table -->
<tr class="table-header">
<th><?php echo _('Playlist Name'); ?></th>
@@ -75,4 +75,6 @@ foreach ($playlists as $playlist) {
<td colspan="4"><?php echo _('No Playlists Found'); ?></td>
</tr>
<?php } ?>
-</table> <!-- End Playlist Table -->
+</table>
+<?php show_box_bottom(); ?>
+