From cfa61f07269ddc02b64de66770f2049433ea06fa Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 22 May 2023 18:14:48 +0200 Subject: [PATCH] #11322 fixed type --- .../godmode/modules/manage_network_components_form_common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/modules/manage_network_components_form_common.php b/pandora_console/godmode/modules/manage_network_components_form_common.php index d90f90d514..9af6f3911d 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_common.php +++ b/pandora_console/godmode/modules/manage_network_components_form_common.php @@ -327,7 +327,7 @@ $table->data[10][2] = __('Discard unknown events'); $table->data[10][3] = html_print_checkbox( 'throw_unknown_events', 1, - network_components_is_disable_type_event(($id === '0') ? false : $id, EVENTS_GOING_UNKNOWN), + network_components_is_disable_type_event(($id === 0) ? false : $id, EVENTS_GOING_UNKNOWN), true );