diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-22 05:36:07 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-22 05:36:07 +0000 |
commit | df348122a7092a24a4ae5c04cf0b5b85bd750ae0 (patch) | |
tree | 79204441a824bafe239a5e8e8de596b87c0aa999 /templates/show_random_albums.inc.php | |
parent | 696f35b5a3e148282c452810ac2b294a68b074e0 (diff) | |
download | ampache-df348122a7092a24a4ae5c04cf0b5b85bd750ae0.tar.gz ampache-df348122a7092a24a4ae5c04cf0b5b85bd750ae0.tar.bz2 ampache-df348122a7092a24a4ae5c04cf0b5b85bd750ae0.zip |
added the initial playlist view page, fixed the artist name on albums of the moment
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 e8e4749d..6a15e58a 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->artist . '] ' . $album->name); + $name = scrub_out('[' . $album->f_artist . '] ' . $album->name); ?> <div class="random_album"> <a href="<?php echo $web_path; ?>/albums.php?action=show&album=<?php echo $album_id; ?>"> |