From 1d885f5e4269c3b9aa012d1db38ba8bce376d504 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 16 May 2023 16:15:18 +0200 Subject: [PATCH] Fix functions_html --- pandora_console/include/functions_html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 88cb032570..610c2c1c26 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4273,7 +4273,7 @@ function html_print_checkbox_extended( if (is_array($attributes) === true) { $tmpAttributes = []; - foreach ($attributes as $key => $value) { + foreach ($attributes as $key => $val) { switch ($key) { case 'input_class': $inputClass .= ' '.$val;