#10424 Fixed auth login and password
This commit is contained in:
parent
dad2d430dd
commit
f90cbd87a0
|
@ -1758,7 +1758,10 @@ if ($update_module) {
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
if ($id_module_type == 30 || $id_module_type == 31 || $id_module_type == 32 || $id_module_type == 33) {
|
if ($id_module_type === 30 || $id_module_type === 31
|
||||||
|
|| $id_module_type === 32 || $id_module_type === 33
|
||||||
|
|| $id_module_type === 38
|
||||||
|
) {
|
||||||
$plugin_parameter_split = explode('
', $values['plugin_parameter']);
|
$plugin_parameter_split = explode('
', $values['plugin_parameter']);
|
||||||
|
|
||||||
$values['plugin_parameter'] = '';
|
$values['plugin_parameter'] = '';
|
||||||
|
@ -1954,7 +1957,10 @@ if ($create_module) {
|
||||||
'warning_time' => $warning_time,
|
'warning_time' => $warning_time,
|
||||||
];
|
];
|
||||||
|
|
||||||
if ($id_module_type === 30 || $id_module_type === 31 || $id_module_type === 32 || $id_module_type === 33) {
|
if ($id_module_type === 30 || $id_module_type === 31
|
||||||
|
|| $id_module_type === 32 || $id_module_type === 33
|
||||||
|
|| $id_module_type === 38
|
||||||
|
) {
|
||||||
$plugin_parameter_split = explode('
', $values['plugin_parameter']);
|
$plugin_parameter_split = explode('
', $values['plugin_parameter']);
|
||||||
|
|
||||||
$values['plugin_parameter'] = '';
|
$values['plugin_parameter'] = '';
|
||||||
|
|
|
@ -407,8 +407,7 @@ if ($edit_module === true) {
|
||||||
$help_header = 'local_module';
|
$help_header = 'local_module';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($id_module_type === 6 || $id_module_type === 7
|
if ($id_module_type === 6 || $id_module_type === 7) {
|
||||||
) {
|
|
||||||
$help_header = 'icmp_module_tab';
|
$help_header = 'icmp_module_tab';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -420,7 +419,7 @@ if ($edit_module === true) {
|
||||||
$help_header = 'tcp_module_tab';
|
$help_header = 'tcp_module_tab';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($id_module_type >= 30 && $id_module_type <= 33) {
|
if (($id_module_type >= 30 && $id_module_type <= 33) || $id_module_type === 38) {
|
||||||
$help_header = 'webserver_module_tab';
|
$help_header = 'webserver_module_tab';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue