Merge branch 'ent-10353-#15036-Componentes-con-el-mismo-nombre' into 'develop'

Ent 10353 #15036 componentes con el mismo nombre

See merge request artica/pandorafms!5714
This commit is contained in:
Rafael Ameijeiras 2023-06-27 11:27:40 +00:00
commit 2eea623912
1 changed files with 3 additions and 16 deletions

View File

@ -341,14 +341,7 @@ if ($type >= MODULE_TYPE_REMOTE_SNMP && $type <= MODULE_TYPE_REMOTE_SNMP_PROC) {
}
if ($is_management_allowed === true && $create_component) {
$name_check = db_get_value(
'name',
'tnetwork_component',
'name',
$name
);
if ($name && !$name_check) {
if ($name) {
$id = network_components_create_network_component(
$name,
$type,
@ -429,14 +422,8 @@ if ($is_management_allowed === true && $create_component) {
AUDIT_LOG_MODULE_MANAGEMENT,
'Fail try to create remote component'
);
if ($name_check !== false) {
// If name exists, advice about it.
ui_print_error_message(__('Could not be created because the component exists'));
} else {
// Other cases.
ui_print_error_message(__('Could not be created'));
}
// Other cases.
ui_print_error_message(__('Could not be created'));
include_once 'godmode/modules/manage_network_components_form.php';
return;