diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-20 18:50:04 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-20 18:50:04 +0000 |
commit | eb23bc31f5f5ccbf27f57f12429a63c2006d2419 (patch) | |
tree | bf3294ff58110b02a7ebe9457e2d2ed9feb46b0d /templates/show_album.inc.php | |
parent | d5231c592cade3fffb72ad7dda5a9479d7eda2be (diff) | |
download | ampache-eb23bc31f5f5ccbf27f57f12429a63c2006d2419.tar.gz ampache-eb23bc31f5f5ccbf27f57f12429a63c2006d2419.tar.bz2 ampache-eb23bc31f5f5ccbf27f57f12429a63c2006d2419.zip |
moved to spockys a link for text, ratings are broken.. but I think I did that will fix later
Diffstat (limited to 'templates/show_album.inc.php')
-rw-r--r-- | templates/show_album.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php index 203f911f..f341c364 100644 --- a/templates/show_album.inc.php +++ b/templates/show_album.inc.php @@ -23,7 +23,7 @@ $web_path = Config::get('web_path'); $ajax_url = Config::get('ajax_url'); // Title for this album -$title = scrub_out($album->name) . ' (' . $album->year . ') -- ' . $album->f_artist; +$title = scrub_out($album->name) . ' (' . $album->year . ') -- ' . $album->f_artist; ?> <?php show_box_top($title,'info-box'); ?> <div style="float:left;margin-right:10px;"> @@ -43,8 +43,8 @@ $title = scrub_out($album->name) . ' (' . $album->year . ') -- ' . $album->f_ar </div> <strong><?php echo _('Actions'); ?>:</strong><br /> <div id="information_actions"> - <span class="text-action"><?php echo Ajax::text('?action=basket&type=album&id=' . $album->id,_('Play Album'),'play_full_' . $album->id); ?></span> - <span class="text-action"><?php echo Ajax::text('?action=basket&type=album_random&id=' . $album->id,_('Play Random from Album'),'play_random_' . $album->id); ?></span> + <?php echo Ajax::text('?action=basket&type=album&id=' . $album->id,_('Play Album'),'play_full_' . $album->id); ?><br /> + <?php echo Ajax::text('?action=basket&type=album_random&id=' . $album->id,_('Play Random from Album'),'play_random_' . $album->id); ?><br /> <?php if ($GLOBALS['user']->has_access('75')) { ?> <a href="<?php echo $web_path; ?>/albums.php?action=clear_art&album_id=<?php echo $album->id; ?>"><?php echo _('Reset Album Art'); ?></a><br /> <?php } ?> @@ -56,7 +56,7 @@ $title = scrub_out($album->name) . ' (' . $album->year . ') -- ' . $album->f_ar <a href="<?php echo $web_path; ?>/batch.php?action=alb&id=<?php echo $album->id; ?>"><?php echo _('Download'); ?></a><br /> <?php } ?> <?php if (Plugin::is_installed('OpenStrands')) { ?> - <span class="text-action"><?php echo Ajax::text('?page=stats&action=show_check_album_tracks&id=' . $album->id,_('Find Missing Tracks'),'album_missing_tracks'); ?></span> + <?php echo Ajax::text('?page=stats&action=show_check_album_tracks&id=' . $album->id,_('Find Missing Tracks'),'album_missing_tracks'); ?><br /> <?php } ?> </div> <?php show_box_bottom(); ?> |