diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-06 06:05:32 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-06 06:05:32 +0000 |
commit | b3dcd437cb507774753659faa113d499e107e201 (patch) | |
tree | faaaf999315b575f063c0564ea4d6d5aebb9ea5e /templates/show_random_albums.inc.php | |
parent | f7cfd87117fbd41911bb6823aec8ea3ffdd72350 (diff) | |
download | ampache-b3dcd437cb507774753659faa113d499e107e201.tar.gz ampache-b3dcd437cb507774753659faa113d499e107e201.tar.bz2 ampache-b3dcd437cb507774753659faa113d499e107e201.zip |
fixed lack of prefix on albums improves album art search results, thx darkside
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 99d49bff..1c947fb7 100644 --- a/templates/show_random_albums.inc.php +++ b/templates/show_random_albums.inc.php @@ -26,7 +26,7 @@ $web_path = Config::get('web_path'); foreach ($albums as $album_id) { $album = new Album($album_id); $album->format(); - $name = scrub_out('[' . $album->f_artist . '] ' . $album->name); + $name = scrub_out('[' . $album->f_artist . '] ' . $album->full_name); ?> <div class="random_album"> <a href="<?php echo $web_path; ?>/albums.php?action=show&album=<?php echo $album_id; ?>"> |