diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-24 16:07:02 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-24 16:07:02 +0000 |
commit | 9d17e8cc950234277f156b91447696a2d40a0c21 (patch) | |
tree | 877b65c34b928dad03155ccdf713f74adcb60113 /templates/show_edit_song.inc.php | |
parent | c4a3424f40492414a3e49da98fcd5091647df84f (diff) | |
download | ampache-9d17e8cc950234277f156b91447696a2d40a0c21.tar.gz ampache-9d17e8cc950234277f156b91447696a2d40a0c21.tar.bz2 ampache-9d17e8cc950234277f156b91447696a2d40a0c21.zip |
little cleanup to edit jigger
Diffstat (limited to 'templates/show_edit_song.inc.php')
-rw-r--r-- | templates/show_edit_song.inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/show_edit_song.inc.php b/templates/show_edit_song.inc.php index a3c24af6..b7dbeb6b 100644 --- a/templates/show_edit_song.inc.php +++ b/templates/show_edit_song.inc.php @@ -5,9 +5,8 @@ All rights reserved. This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + modify it under the terms of the GNU General Public License v2 + as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -21,9 +20,9 @@ */ ?> -<span class="header1"><?php echo _('Edit Song'); ?></span> +<?php show_box_top(_('Edit Song')); ?> <form name="edit_song" method="post" enctype="multipart/form-data" action="<?php echo conf('web_path'); ?>/admin/flag.php"> -<table class="text-box"> +<table> <tr class="<?php echo flip_class(); ?>"> <td><?php echo _('File'); ?>:</td> <td><?php echo scrub_out($song->file); ?></td> @@ -92,3 +91,4 @@ </tr> </table> </form> +<?php show_box_bottom(); ?> |