diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-31 08:07:54 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-03-31 08:07:54 +0000 |
commit | 2f126626cbd951e97220d7c9ab1f2791f614f401 (patch) | |
tree | 739ca78b8d50c42829d45176829e2ba9e7ef39a3 /templates/show_artist_box.inc.php | |
parent | 05a1cfe34904997715dd145af81d6d2170e120df (diff) | |
download | ampache-2f126626cbd951e97220d7c9ab1f2791f614f401.tar.gz ampache-2f126626cbd951e97220d7c9ab1f2791f614f401.tar.bz2 ampache-2f126626cbd951e97220d7c9ab1f2791f614f401.zip |
added download for size, and seriously cleaned up the /song.php file it actually is not ugly anymore.. yeah!
Diffstat (limited to 'templates/show_artist_box.inc.php')
-rw-r--r-- | templates/show_artist_box.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_artist_box.inc.php b/templates/show_artist_box.inc.php index fdbedc82..8ed59615 100644 --- a/templates/show_artist_box.inc.php +++ b/templates/show_artist_box.inc.php @@ -26,8 +26,8 @@ $web_path = conf('web_path'); <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> + <li><a href="<?php echo $web_path; ?>/song.php?action=artist&artist_id=<?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=artist_random&artist_id=<?php echo $artist_id; ?>"><?php echo _("Play Random Songs By") . " " . $artist->full_name; ?></a></li> <?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> |