summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-01 19:53:34 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-12-01 19:53:34 +0000
commit06bba3740b0bb4efd11cba8386a414ad4ae1fdb6 (patch)
tree376913d116f1b3ff9e509d4c800f18107a3a8c00 /templates
parentaed7695b2124cccca87d41cdee51cbe31db44452 (diff)
downloadampache-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')
-rw-r--r--templates/show_album.inc.php4
-rw-r--r--templates/show_artist_box.inc.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php
index 4f9956cd..78944dbf 100644
--- a/templates/show_album.inc.php
+++ b/templates/show_album.inc.php
@@ -42,8 +42,8 @@ $title = scrub_out($album->name) . '&nbsp;(' . $album->year . ')&nbsp;--&nbsp;'
<div id="information_actions">
<h3><?php echo _('Actions'); ?>:</h3>
<ul>
- <li><?php echo Ajax::text('?action=basket&type=album&id=' . $album->id,_('Play Album'),'play_full_' . $album->id); ?></li>
- <li><?php echo Ajax::text('?action=basket&type=album_random&id=' . $album->id,_('Play Random from Album'),'play_random_' . $album->id); ?></li>
+ <li><?php echo Ajax::text('?action=basket&type=album&id=' . $album->id,_('Add Album'),'play_full_' . $album->id); ?></li>
+ <li><?php echo Ajax::text('?action=basket&type=album_random&id=' . $album->id,_('Add Random from Album'),'play_random_' . $album->id); ?></li>
<?php if ($GLOBALS['user']->has_access('75')) { ?>
<li><a href="<?php echo $web_path; ?>/albums.php?action=clear_art&amp;album_id=<?php echo $album->id; ?>"><?php echo _('Reset Album Art'); ?></a></li>
<?php } ?>
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&amp;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&amp;artist=<?php echo $artist->id; ?>"><?php echo _("Update from tags"); ?></a><br />
<a href="<?php echo $web_path; ?>/artists.php?action=show_similar&amp;artist=<?php echo $artist->id; ?>"><?php echo _("Find duplicate artists"); ?></a><br />