Issues (2963)

includes/polling/os/tranzeo.inc.php (2 issues)

1
<?php
2
3
// Tranzeo sysDescr is quite uniform :
4
//
5
// Tranzeo TR6SL5, OS 6.8.0(1024), FW TR6-5.0.2SL5, 5.xGHz, 0dBi int. antenna
6
// Tranzeo TR6Rt, OS 6.8.0(1024), FW TR6-3.6.0Rt, 5.xGHz, 19dBi int. antenna
7
// Tranzeo TR6CPQ, OS 6.3.34(1019), FW TR6-2.0.12CPQ, 2.4GHz, 15dBi int. antenna
8
// Tranzeo TR900Rt, OS 6.8.0(1024), FW TR900-3.3.3Rt, 900MHz, 17dBi ext. antenna
9
[$hardware, $version, $features, $hardware_antenna] = explode(', ', $device['sysDescr']);
10
11
[,$version] = explode(' ', $version);
12
[$version] = explode('(', $version);
0 ignored issues
show
Comprehensibility Best Practice introduced by
This list assign is not used and could be removed.
Loading history...
13
[,$features] = explode(' ', $features);
0 ignored issues
show
Comprehensibility Best Practice introduced by
This list assign is not used and could be removed.
Loading history...
14