diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-01 19:53:34 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-01 19:53:34 +0000 |
commit | 06bba3740b0bb4efd11cba8386a414ad4ae1fdb6 (patch) | |
tree | 376913d116f1b3ff9e509d4c800f18107a3a8c00 /templates/show_artist_box.inc.php | |
parent | aed7695b2124cccca87d41cdee51cbe31db44452 (diff) | |
download | ampache-06bba3740b0bb4efd11cba8386a414ad4ae1fdb6.tar.gz ampache-06bba3740b0bb4efd11cba8386a414ad4ae1fdb6.tar.bz2 ampache-06bba3740b0bb4efd11cba8386a414ad4ae1fdb6.zip |
fixed url add to localplay, also changed some play links to add
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 6cd025f8..48f81227 100644 --- a/templates/show_artist_box.inc.php +++ b/templates/show_artist_box.inc.php @@ -32,8 +32,8 @@ if (Config::get('ratings')) { <strong><?php echo _('Actions'); ?>:</strong> <div id="information_actions"> <a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist->id; ?>"><?php echo _("Show All Songs By") . " " . $artist->f_name; ?></a><br /> -<?php echo Ajax::text('?action=basket&type=artist&id=' . $artist->id,_('Play All Songs By') . ' ' . $artist->f_name,'play_full_artist'); ?><br /> -<?php echo Ajax::text('?action=basket&type=artist_random&id=' . $artist->id,_('Play Random Songs By') . ' ' . $artist->f_name,'play_random_artist'); ?><br /> +<?php echo Ajax::text('?action=basket&type=artist&id=' . $artist->id,_('Add All Songs By') . ' ' . $artist->f_name,'play_full_artist'); ?><br /> +<?php echo Ajax::text('?action=basket&type=artist_random&id=' . $artist->id,_('Add Random Songs By') . ' ' . $artist->f_name,'play_random_artist'); ?><br /> <?php if ($GLOBALS['user']->has_access('50')) { ?> <a href="<?php echo $web_path; ?>/artists.php?action=update_from_tags&artist=<?php echo $artist->id; ?>"><?php echo _("Update from tags"); ?></a><br /> <a href="<?php echo $web_path; ?>/artists.php?action=show_similar&artist=<?php echo $artist->id; ?>"><?php echo _("Find duplicate artists"); ?></a><br /> |