From c5d947a7b1d0a5166d8c4018a6c6988f4c75d645 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Thu, 19 Aug 2010 14:57:31 +0000 Subject: [PATCH] 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. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3162 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/include/functions_html.php | 1 + 2 files changed, 6 insertions(+) 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";