diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-07-24 05:28:26 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-07-24 05:28:26 +0000 |
commit | bd5d32d7457f35d76f73158fd07e51da8085c6e5 (patch) | |
tree | 5ed28cd4b800f297e50af3feee72a720faf7e250 /templates/show_artist.inc.php | |
parent | ace739e4ccb65fcdd134f3a6ed162e07c83159de (diff) | |
download | ampache-bd5d32d7457f35d76f73158fd07e51da8085c6e5.tar.gz ampache-bd5d32d7457f35d76f73158fd07e51da8085c6e5.tar.bz2 ampache-bd5d32d7457f35d76f73158fd07e51da8085c6e5.zip |
sync a file I missed in the patch
Diffstat (limited to 'templates/show_artist.inc.php')
-rw-r--r-- | templates/show_artist.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_artist.inc.php b/templates/show_artist.inc.php index 1e8b88fe..3bb8ffec 100644 --- a/templates/show_artist.inc.php +++ b/templates/show_artist.inc.php @@ -32,13 +32,13 @@ if (Config::get('ratings')) { <div id="information_actions"> <ul> <li> - <a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist->id; ?>"><?php echo get_user_icon('view'); ?></a> <?php echo _("Show All Songs By") . " " . $artist->f_name; ?> + <a href="<?php echo $web_path; ?>/artists.php?action=show_all_songs&artist=<?php echo $artist->id; ?>"><?php echo get_user_icon('view'); ?></a><?php printf(_("Show All Songs By %s"), $artist->f_name); ?> </li> <li> - <?php echo Ajax::button('?action=basket&type=artist&id=' . $artist->id,'add',_('Add'),'add_' . $artist->id); ?><?php echo _('Add All songs By') . ' ' . $artist->f_name; ?> + <?php echo Ajax::button('?action=basket&type=artist&id=' . $artist->id,'add',_('Add'),'add_' . $artist->id); ?><?php printf(_('Add All Songs By %s'), $artist->f_name); ?> </li> <li> - <?php echo Ajax::button('?action=basket&type=artist_random&id=' . $artist->id,'random',_('Random'),'random_' . $artist->id); ?><?php echo _('Add Random Songs By') . ' ' . $artist->f_name; ?> + <?php echo Ajax::button('?action=basket&type=artist_random&id=' . $artist->id,'random',_('Random'),'random_' . $artist->id); ?><?php printf(_('Add Random Songs By %s'), $artist->f_name); ?>> </li> <?php if (Access::check('interface','50')) { ?> <li> |