From a31f477290377896262a2fa9783cb25e455b7fcb Mon Sep 17 00:00:00 2001 From: Jellyfrog Date: Thu, 25 Oct 2018 12:58:05 +0200 Subject: [PATCH] Show device "features" in correct column (#9366) --- html/includes/table/devices.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/includes/table/devices.inc.php b/html/includes/table/devices.inc.php index 18d407bd85..18cd6e8d3c 100644 --- a/html/includes/table/devices.inc.php +++ b/html/includes/table/devices.inc.php @@ -208,8 +208,8 @@ foreach (dbFetchRows($sql, $param) as $device) { } if ($subformat == 'detail') { - $platform = $device['hardware'] . '
' . $device['features']; - $os = $device['os_text'] . '
' . $device['version']; + $platform = $device['hardware']; + $os = $device['os_text'] . '
' . $device['version'] . (empty($device['features'])? "" : " ({$device['features']})"); $device['ip'] = inet6_ntop($device['ip']); $uptime = formatUptime($device['uptime'], 'short'); $hostname .= '
' . get_device_name($device);