CC-4197: Media Library -> Regular Playlist: Some character get cut off in context view
-fixed
This commit is contained in:
parent
00a484d595
commit
321e6c6524
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@
|
||||||
<?php foreach($this->contents as $row) : ?>
|
<?php foreach($this->contents as $row) : ?>
|
||||||
<?php
|
<?php
|
||||||
$titleMaxStrLen = 35;
|
$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)."...";
|
$row["track_title"] = substr($row["track_title"], 0, 34)."...";
|
||||||
}
|
}
|
||||||
$artistMaxStrLen = 22;
|
$artistMaxStrLen = 22;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue