mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix display of icons in Devices menu bar
This commit is contained in:
@@ -86,7 +86,7 @@ foreach (dbFetchRows('SELECT `type`,COUNT(`type`) AS total_type FROM `devices` A
|
||||
if (empty($devtype['type'])) {
|
||||
$devtype['type'] = 'Generic';
|
||||
}
|
||||
echo(' <li><a href="devices/type=' . $devtype['type'] . '/"><img src="images/icons/' . $devtype['type'] . '" border="0" align="absmiddle" /> ' . ucfirst($devtype['type']) . '</a></li>');
|
||||
echo(' <li><a href="devices/type=' . $devtype['type'] . '/"><img src="images/icons/' . $devtype['type'] . '.png" border="0" align="absmiddle" /> ' . ucfirst($devtype['type']) . '</a></li>');
|
||||
}
|
||||
echo ('</ul>
|
||||
</li>');
|
||||
|
||||
Reference in New Issue
Block a user