diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 04:07:17 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-24 04:07:17 +0000 |
commit | bd0008f450fe55b28590e209917da8a61ebdc373 (patch) | |
tree | 46888d1841923ae1f8fb5039f650e776a0b36229 /templates/show_playlist_edit.inc.php | |
parent | ded54786a5d1f24d21b2ffe1ec9d2d2b664a8c54 (diff) | |
download | ampache-bd0008f450fe55b28590e209917da8a61ebdc373.tar.gz ampache-bd0008f450fe55b28590e209917da8a61ebdc373.tar.bz2 ampache-bd0008f450fe55b28590e209917da8a61ebdc373.zip |
quick commit so I can build a nightly
Diffstat (limited to 'templates/show_playlist_edit.inc.php')
-rw-r--r-- | templates/show_playlist_edit.inc.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/templates/show_playlist_edit.inc.php b/templates/show_playlist_edit.inc.php index 48bd78fa..1ff9b1ad 100644 --- a/templates/show_playlist_edit.inc.php +++ b/templates/show_playlist_edit.inc.php @@ -24,10 +24,8 @@ $web_path = conf('web_path'); ?> <form method="post" action="<?php echo $web_path; ?>/playlist.php" enctype="multipart/form-data"> -<table class="text-box"> -<tr> - <td colspan="2" class="header2"><?php echo _('Editing Playlist'); ?></td> -</tr> +<?php show_box_top(_('Editing Playlist')); ?> +<table> <tr> <td><?php echo _('Name'); ?>:</td> <td align="left"> @@ -51,4 +49,5 @@ $web_path = conf('web_path'); </td> </tr> </table> +<?php show_box_bottom(); ?> </form> |