diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 155adb8a48..647f353b5f 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2009-12-23 Sancho Lerena + + * include/config_process.php: Updated build. + + * godmode/agentes/planned_downtime.php: Fixed bad render when downtime + is running. + 2009-12-23 Miguel de Dios * include/functions_db.php: fix warning messages when pass only group as diff --git a/pandora_console/godmode/agentes/planned_downtime.php b/pandora_console/godmode/agentes/planned_downtime.php index 4dad06dd33..a549547195 100644 --- a/pandora_console/godmode/agentes/planned_downtime.php +++ b/pandora_console/godmode/agentes/planned_downtime.php @@ -294,11 +294,15 @@ echo __('Planned Downtime').''; '.__('Delete').''; $data[6] = ' '.__('Update').''; + } else { + $data[5]= "N/A"; + $data[6]= "N/A"; + } if ($downtime["executed"] == 0) $data[7] = print_image ("images/pixel_green.png", true, array ('width' => 20, 'height' => 20, 'alt' => __('Executed'))); else - $data[7] = print_image ("images/pixel_green.png", true, array ('width' => 20, 'height' => 20, 'alt' => __('Not executed'))); + $data[7] = print_image ("images/pixel_red.png", true, array ('width' => 20, 'height' => 20, 'alt' => __('Not executed'))); array_push ($table->data, $data); } diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index d91f12f360..0783037a21 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC091218'; +$build_version = 'PC091223'; $pandora_version = 'v3.0'; /* Help to debug problems. Override global PHP configuration */