Merge branch 'ent-3675-Tipo-erroneo-modulos-Ifoperstatus-desde-satelite' into 'develop'

Fixed data type to remote_snmp_proc in modules IfOperSttus

See merge request artica/pandorafms!2258

Former-commit-id: 61b2bc62b5605304b2fc278838ed1bf8fc20c395
This commit is contained in:
Daniel Rodriguez 2019-03-13 13:02:04 +01:00
commit ff120b23e2
1 changed files with 2 additions and 0 deletions

View File

@ -321,6 +321,8 @@ if ($create_modules) {
$module_type = 2; $module_type = 2;
} else if (preg_match('/ifAdminStatus/', $name_array[1])) { } else if (preg_match('/ifAdminStatus/', $name_array[1])) {
$module_type = 2; $module_type = 2;
} else if (preg_match('/ifOperStatus/', $name_array[1])) {
$module_type = 18;
} else { } else {
$module_type = 4; $module_type = 4;
} }