Fixed issue when truncating UTF-8 strings.

This commit is contained in:
Mike Rostermund
2015-05-29 15:24:49 +02:00
parent 5b74549cd9
commit 134ef3090b

View File

@@ -155,7 +155,7 @@ foreach (dbFetchRows($sql, $param) as $device) {
$hostname = generate_device_link($device);
$platform = $device['hardware'] . '<br />' . $device['features'];
$os = $device['os_text'] . '<br />' . $device['version'];
$uptime = formatUptime($device['uptime'], 'short') . '<br />' . truncate($device['location'],32, '');
$uptime = formatUptime($device['uptime'], 'short') . '<br />' . mb_substr($device['location'], 0, 32, 'utf8');
if ($subformat == "detail") {
$hostname .= '<br />' . $device['sysName'];
if ($port_count) {