diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-23 02:05:38 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-23 02:05:38 +0000 |
commit | 78164aefef355b07df4b28f913f38fc0b0473508 (patch) | |
tree | c1d819a4ffa2ee4a2ff437dc864c117648c46031 /templates/show_artist_box.inc.php | |
parent | bb5dafb7da7682fb0fa54bc281fb69589126f6ba (diff) | |
download | ampache-78164aefef355b07df4b28f913f38fc0b0473508.tar.gz ampache-78164aefef355b07df4b28f913f38fc0b0473508.tar.bz2 ampache-78164aefef355b07df4b28f913f38fc0b0473508.zip |
more interface tweaks, and a bunch of log_event cleanup
Diffstat (limited to 'templates/show_artist_box.inc.php')
-rw-r--r-- | templates/show_artist_box.inc.php | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/templates/show_artist_box.inc.php b/templates/show_artist_box.inc.php index 8c9779f4..fdbedc82 100644 --- a/templates/show_artist_box.inc.php +++ b/templates/show_artist_box.inc.php @@ -21,21 +21,17 @@ */ $web_path = conf('web_path'); ?> -<table class="text-box"> -<tr> - <td> - <span class="header1"><?php echo _("Albums by") . " " . $artist->full_name; ?></span> - <br /><?php if (conf('ratings')) { show_rating($artist->id, 'artist'); } // end if ratings ?><br /> - <ul> +<div class="text-box"> + <span class="header1"><?php echo _('Albums by') . " " . $artist->full_name; ?></span> + <br /><?php if (conf('ratings')) { show_rating($artist->id, 'artist'); } // end if ratings ?> + <ul class="text-action"> <li><a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist_id; ?>"><?php echo _("Show All Songs By") . " " . $artist->full_name; ?></a></li> <li><a href="<?php echo $web_path; ?>/song.php?action=m3u&artist=<?php echo $artist_id; ?>"><?php echo _("Play All Songs By") . " " . $artist->full_name; ?></a></li> <li><a href="<?php echo $web_path; ?>/song.php?action=m3u&artist_random=<?php echo $artist_id; ?>"><?php echo _("Play Random Songs By") . " " . $artist->full_name; ?></a></li> - <?php if ($user->has_access('100')) { ?> + <?php if ($GLOBALS['user']->has_access('100')) { ?> <li><a href="<?php echo $web_path; ?>/artists.php?action=update_from_tags&artist=<?php echo $artist_id; ?>"><?php echo _("Update from tags"); ?></a></li> <li><a href="<?php echo $web_path; ?>/artists.php?action=show_rename&artist=<?php echo $artist_id; ?>"><?php echo _("Rename Artist"); ?></a></li> <li><a href="<?php echo $web_path; ?>/artists.php?action=show_similar&artist=<?php echo $artist_id; ?>"><?php echo _("Find duplicate artists"); ?></a></li> <?php } ?> </ul> - </td> -</tr> -</table> +</div> |