diff options
author | spocky <spocky@ampache> | 2007-01-11 22:02:45 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-01-11 22:02:45 +0000 |
commit | 65929b1bcc5e8692dd6e716d3066fbd92d754a26 (patch) | |
tree | 6c9e422ad59d5eee321d492ecf1ce372ea1da115 /templates/show_random_albums.inc.php | |
parent | dced24f2c5475199fd7f23de726ae2f1423e3956 (diff) | |
download | ampache-65929b1bcc5e8692dd6e716d3066fbd92d754a26.tar.gz ampache-65929b1bcc5e8692dd6e716d3066fbd92d754a26.tar.bz2 ampache-65929b1bcc5e8692dd6e716d3066fbd92d754a26.zip |
- Added artist name on "Albums of the Moment" tooltip
- Don't display "Album of the Moment" without art
- Minor html/text adjustments
Diffstat (limited to 'templates/show_random_albums.inc.php')
-rw-r--r-- | templates/show_random_albums.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_random_albums.inc.php b/templates/show_random_albums.inc.php index bc41edef..b2f3348d 100644 --- a/templates/show_random_albums.inc.php +++ b/templates/show_random_albums.inc.php @@ -27,7 +27,7 @@ $web_path = conf('web_path'); foreach ($albums as $album_id) { $album = new Album($album_id); $album->format(); - $name = scrub_out($album->name); + $name = scrub_out('[' . $album->artist . '] ' . $album->name); ?> <td> <a href="<?php echo $web_path; ?>/albums.php?action=show&album=<?php echo $album_id; ?>"> |