From df348122a7092a24a4ae5c04cf0b5b85bd750ae0 Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Wed, 22 Aug 2007 05:36:07 +0000 Subject: added the initial playlist view page, fixed the artist name on albums of the moment --- lib/class/album.class.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/class/album.class.php') diff --git a/lib/class/album.class.php b/lib/class/album.class.php index dc42aa2d..f19d26cc 100644 --- a/lib/class/album.class.php +++ b/lib/class/album.class.php @@ -215,10 +215,12 @@ class Album { $this->f_title = $name; if ($this->artist_count == '1') { $artist = scrub_out(truncate_with_ellipsis(trim($this->artist_prefix . ' ' . $this->artist_name),Config::get('ellipsis_threshold_album'))); - $this->f_artist = "artist_id . "\">" . $artist . ""; + $this->f_artist_link = "artist_id . "\">" . $artist . ""; + $this->f_artist = $artist; } else { - $this->f_artist = "
artist_count " . _('Artists') . "\">" . _('Various') . "
"; + $this->f_artist_link = "
artist_count " . _('Artists') . "\">" . _('Various') . "
"; + $this->f_artist = _('Various'); } if ($this->year == '0') { -- cgit