mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Comes from PR11322. * Code changes to solve github-apply warnings. Removed aos tests. * Added new aos tests.
7 lines
201 B
PHP
Executable File
7 lines
201 B
PHP
Executable File
<?php
|
|
if (strpos($device['sysDescr'], 'Enterprise')) {
|
|
list(,,$hardware,$version) = explode(' ', $device['sysDescr']);
|
|
} else {
|
|
list(,$hardware,$version) = explode(' ', $device['sysDescr']);
|
|
}
|