diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-26 07:52:05 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-26 07:52:05 +0000 |
commit | cff8e731529103c63da1c2ef8e3dd0b91686b1c2 (patch) | |
tree | 3574642cbed6bdec1ca93f77d309cf941a6fa909 /templates/show_similar_artists.inc | |
parent | 3ccf8570aa6c2070e15bcd03fa0fa0351a80fba5 (diff) | |
download | ampache-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_similar_artists.inc')
-rw-r--r-- | templates/show_similar_artists.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/show_similar_artists.inc b/templates/show_similar_artists.inc index 25a9f6d2..edc5c0e2 100644 --- a/templates/show_similar_artists.inc +++ b/templates/show_similar_artists.inc @@ -21,9 +21,9 @@ */ $web_path = conf('web_path'); ?> +<?php show_box_top(_('Similar Artists')); ?> <form name="artists" method="post" enctype="multipart/form-data" action="<?php echo $web_path; ?>/artists.php?action=rename_similar&artist=<?php echo $artist_id;?>" style="Display:inline;"> - <h1>Similar Artists</h1> - <h3>Please check the artists you want to merge with the current one (<span style='text-decoration: underline;'><?php echo $artist_name;?></span>)</h3> + <h3><?php _('Please check the artists you want to merge with the current one'); ?> (<span style='text-decoration: underline;'><?php echo $artist_name;?></span>)</h3> <table class="border" cellspacing="0" cellpadding="0" border="0"> <tr class="table-header"> <th> Select</th> @@ -80,12 +80,11 @@ if ($show) { ?> </table> </form> +<?php show_box_bottom(); ?> +<?php show_box_top(_('Advanced Options')); ?> <form name='advanced' action='<?php echo $web_path; ?>/artists.php?action=show_similar&artist=<?php echo $artist_id; ?>' method='POST'> <table class="border" cellspacing="0" cellpadding="0" border="0" style='margin-left: 10px; margin-top: 20px;'> <!--Advanced--> - <tr class="table-header"> - <th colspan='2'>Advanced options</th> - </tr> <tr class="<?php echo flip_class(); ?>"> <th colspan='2' style='text-align: left;'>Normalize options</th> </tr> @@ -149,6 +148,7 @@ if ($show) { </table> </form> +<?php show_box_bottom(); ?> <script language='javascript'> function default_filter() { document.getElementById('n_filter').value = "/[^a-z ]/"; @@ -156,4 +156,4 @@ if ($show) { function default_ignore() { document.getElementById('n_ignore').value = "/\s(the|an?)\s/"; } -</script>
\ No newline at end of file +</script> |