diff options
author | spocky <spocky@ampache> | 2008-01-17 09:37:36 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2008-01-17 09:37:36 +0000 |
commit | 86263d7c1be8aa4f083f47e5f1bcee9ab01f64c8 (patch) | |
tree | 9ca94a60ba022d94b77e4ebf39c4bc995245a568 /templates | |
parent | 153fcb98d4a7545df9ef34690cbf46bb557064f0 (diff) | |
download | ampache-86263d7c1be8aa4f083f47e5f1bcee9ab01f64c8.tar.gz ampache-86263d7c1be8aa4f083f47e5f1bcee9ab01f64c8.tar.bz2 ampache-86263d7c1be8aa4f083f47e5f1bcee9ab01f64c8.zip |
Fixed artist display wrongly using ellipsis_threshold_album preference
Fixed wrong artist html encoding in random albums image title
Diffstat (limited to 'templates')
-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 1c947fb7..8a879f9e 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->full_name); + $name = '[' . $album->f_artist . '] ' . scrub_out($album->full_name); ?> <div class="random_album"> <a href="<?php echo $web_path; ?>/albums.php?action=show&album=<?php echo $album_id; ?>"> |