diff --git a/playback_m3u.php b/playback_m3u.php index ae6ea8db2..3a13cb497 100644 --- a/playback_m3u.php +++ b/playback_m3u.php @@ -118,9 +118,9 @@ foreach ($m3uData as $entry) { $result = '' . sprintf($lang['AUDIO_TRACK'], $stream->index) . '
'; if (isset($stream->tags->title)) { - $result .= $stream->tags->language . ' (' . $stream->tags->title . ')'; + $result .= '' . mb_strtoupper($stream->tags->language, 'UTF-8') . ' (' . $stream->tags->title . ')' . ''; } else { - $result .= $stream->tags->language; + $result .= '' . mb_strtoupper($stream->tags->language, 'UTF-8') . ''; } $result .= '
';