diff options
Diffstat (limited to 'templates/show_now_playing_row.inc.php')
-rw-r--r-- | templates/show_now_playing_row.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index fc7f7681..30553a8d 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -81,7 +81,7 @@ <div class="np_cel cel_similar_artist"> <?php if (is_null($a['id'])) { - echo scrub_out(truncate_with_ellipsis($a['name']), Config::get('ellipse_threshold_artist')); + echo scrub_out(UI::truncate($a['name']), Config::get('ellipse_threshold_artist')); } else { $artist = new Artist($a['id']); |