diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 25d30ec401..2782e55574 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2010-08-19 Miguel de Dios + + * include/functions_html.php: fixed the function "print_checkbox_extended" + this function didn't use the parameter $atributes, now yes. + 2010-08-19 Sergio Martin * godmode/agentes/module_manager.php: Change the use of diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index ae4a86094e..0777238170 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -1012,6 +1012,7 @@ function print_checkbox_extended ($name, $value, $checked, $disabled, $script, $ $output .= ' disabled="disabled"'; } + $output .= ' ' . $attributes ; $output .= ' />'; $output .= "\n";