CC-4197: Media Library -> Regular Playlist: Some character get cut off in context view
-fixed
This commit is contained in:
parent
00a484d595
commit
321e6c6524
|
@ -53,7 +53,7 @@
|
|||
<?php foreach($this->contents as $row) : ?>
|
||||
<?php
|
||||
$titleMaxStrLen = 35;
|
||||
if (strlen($row["track_title"]) > $titleMaxStrLen) {
|
||||
if (mb_strlen($row["track_title"], 'UTF-8') > $titleMaxStrLen) {
|
||||
$row["track_title"] = substr($row["track_title"], 0, 34)."...";
|
||||
}
|
||||
$artistMaxStrLen = 22;
|
||||
|
|
Loading…
Reference in New Issue