Merge branch 'ent-8860-mejora-wizard-snmp' into 'develop'
Applied fix for snmp See merge request artica/pandorafms!4868
This commit is contained in:
commit
d400d5b7dc
|
@ -3572,7 +3572,12 @@ class AgentWizard extends HTML
|
||||||
if ($full_output === true) {
|
if ($full_output === true) {
|
||||||
$output[] = $key.' = '.$oid_unit;
|
$output[] = $key.' = '.$oid_unit;
|
||||||
} else {
|
} else {
|
||||||
preg_match('/\.\d+$/', $key, $index);
|
$index = [];
|
||||||
|
$index[] = preg_replace('/^'.$oid.'/', '', $key);
|
||||||
|
if (empty($index) === true) {
|
||||||
|
preg_match('/\.\d+$/', $key, $index);
|
||||||
|
}
|
||||||
|
|
||||||
$tmp = explode(': ', $oid_unit);
|
$tmp = explode(': ', $oid_unit);
|
||||||
$output[$index[0]] = str_replace('"', '', ($tmp[1] ?? ''));
|
$output[$index[0]] = str_replace('"', '', ($tmp[1] ?? ''));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue