diff options
author | pb1dft <pb1dft@ampache> | 2006-11-17 00:43:11 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2006-11-17 00:43:11 +0000 |
commit | ca3d4572837b4caebee850e11fe3f591bd765dff (patch) | |
tree | e5b7ffc246295257ba8e4ff466061341647245ce /lib/general.lib.php | |
parent | ad6644d6cb748929108dad3143021e85ed048906 (diff) | |
download | ampache-ca3d4572837b4caebee850e11fe3f591bd765dff.tar.gz ampache-ca3d4572837b4caebee850e11fe3f591bd765dff.tar.bz2 ampache-ca3d4572837b4caebee850e11fe3f591bd765dff.zip |
Fixed upload playlist and a minor issue in most popular
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 */ |