summaryrefslogtreecommitdiffstats
path: root/templates/show_rename_artist.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-26 07:52:05 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-26 07:52:05 +0000
commitcff8e731529103c63da1c2ef8e3dd0b91686b1c2 (patch)
tree3574642cbed6bdec1ca93f77d309cf941a6fa909 /templates/show_rename_artist.inc.php
parent3ccf8570aa6c2070e15bcd03fa0fa0351a80fba5 (diff)
downloadampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.tar.gz
ampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.tar.bz2
ampache-cff8e731529103c63da1c2ef8e3dd0b91686b1c2.zip
fixed acls and improved the classic theme a little more
Diffstat (limited to 'templates/show_rename_artist.inc.php')
-rw-r--r--templates/show_rename_artist.inc.php36
1 files changed, 10 insertions, 26 deletions
diff --git a/templates/show_rename_artist.inc.php b/templates/show_rename_artist.inc.php
index 72f707ff..1d9c1130 100644
--- a/templates/show_rename_artist.inc.php
+++ b/templates/show_rename_artist.inc.php
@@ -26,31 +26,15 @@ function insert()
document.getElementById('artist_name').value = '<?php echo $artist->name; ?>';
}
</script>
-
+<?php show_box_top(_('Rename') . " " . $artist->name); ?>
<form name="rename_artist" method="post" action="<?php echo conf('web_path'); ?>/artists.php?action=rename&amp;artist=<?php echo $artist->id; ?>" style="Display:inline;">
-<table class="text-box" cellspacing="0">
-<tr>
- <th align="left">
- <span class="header2"><?php echo _("Rename") . " " . $artist->name . " " . _("to"); ?></span>
- </th>
-</tr>
-<tr>
- <td>
- <?php show_artist_pulldown($artist->id, "artist_id", 4); ?>
- <br />
- <?php echo _("OR"); ?><br />
- <input type="text" name="artist_name" size="30" value="<?php echo scrub_out($_REQUEST['artist_name']); ?>" id="artist_name" />
- <a href="javascript:insert()">[<?php echo _("Insert current"); ?>]</a>
- <?php $GLOBALS['error']->print_error('artist_name'); ?>
- </td>
-</tr>
-<tr>
- <td><input type="checkbox" name="update_id3" value="yes" />&nbsp; <?php echo _("Update id3 tags"); ?></td>
-</tr>
-<tr>
- <td>
- <input type="submit" value="<?php echo _("Rename"); ?>" />
- </td>
-</tr>
-</table>
+ <?php show_artist_pulldown($artist->id, "artist_id", 4); ?>
+ <br />
+ <?php echo _('OR'); ?><br />
+ <input type="text" name="artist_name" size="30" value="<?php echo scrub_out($_REQUEST['artist_name']); ?>" id="artist_name" />
+ <a href="javascript:insert()">[<?php echo _('Insert current'); ?>]</a><br />
+ <?php $GLOBALS['error']->print_error('artist_name'); ?>
+ <input type="checkbox" name="update_id3" value="yes" />&nbsp; <?php echo _('Update id3 tags') ?><br />
+ <input type="submit" value="<?php echo _('Rename'); ?>" /><br />
</form>
+<?php show_box_bottom(); ?>