diff options
Diffstat (limited to 'lib/general.lib.php')
-rw-r--r-- | lib/general.lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/general.lib.php b/lib/general.lib.php index 6cce88b8..697e0f50 100644 --- a/lib/general.lib.php +++ b/lib/general.lib.php @@ -631,7 +631,7 @@ function get_global_popular($type) { $artist_obj->format_artist(); $artist = $artist_obj->full_name; $items[] = "<li> <a href=\"$web_path/artists.php?action=show&artist=" . $r['object_id'] . "\" title=\"". scrub_out($artist) ."\">" . - scrub_out(truncate_with_ellipse($artist, conf('ellipse_threshold_artist')+3)) . " (" . $r['count'] . ")</a> </li>"; + truncate_with_ellipse($artist, conf('ellipse_threshold_artist')+3) . " (" . $r['count'] . ")</a> </li>"; } // if type isn't artist /* If Album */ |