diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-19 05:34:59 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-19 05:34:59 +0000 |
commit | 17244cee94c89c4dcdc7fc58001790165ca2d7f1 (patch) | |
tree | 80b0e1d3980eb941c7195a90ea35f6f23ff6d5ee /lib/class/album.class.php | |
parent | af2ca647bdd38611982354e16aa56bda4a87d8ef (diff) | |
download | ampache-17244cee94c89c4dcdc7fc58001790165ca2d7f1.tar.gz ampache-17244cee94c89c4dcdc7fc58001790165ca2d7f1.tar.bz2 ampache-17244cee94c89c4dcdc7fc58001790165ca2d7f1.zip |
add the title back in to the links and be a little more violent with the charset setting...
Diffstat (limited to 'lib/class/album.class.php')
-rw-r--r-- | lib/class/album.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/album.class.php b/lib/class/album.class.php index c74bd800..1fae7fd0 100644 --- a/lib/class/album.class.php +++ b/lib/class/album.class.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 Ampache.org + Copyright (c) 2001 - 2008 Ampache.org All Rights Reserved This program is free software; you can redistribute it and/or @@ -222,7 +222,7 @@ class Album { $this->f_title = $full_name; if ($this->artist_count == '1') { $artist = scrub_out(truncate_with_ellipsis(trim($this->artist_prefix . ' ' . $this->artist_name),Config::get('ellipsis_threshold_artist'))); - $this->f_artist_link = "<a href=\"$web_path/artists.php?action=show&artist=" . $this->artist_id . "\">" . $artist . "</a>"; + $this->f_artist_link = "<a href=\"$web_path/artists.php?action=show&artist=" . $this->artist_id . "\" title=\"" . scrub_out($this->artist_name) . "\">" . $artist . "</a>"; $this->f_artist = $artist; } else { |