diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index c2e244ec41..504245cb7d 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,4 +1,13 @@ -2009-10-17 Sancho Lerena +2009-10-16 Raul Mateos + + * include/config_process.php: Update build after last changes. + + * godmode/agentes/planned_downtime*.php: Improving integrity of + appareance in title. + + * Changelog: Correct some dates. + +2009-10-16 Sancho Lerena * include/functions_db.php: Updated description for ACL flags. @@ -14,11 +23,12 @@ * operation/agentes/status_monitor.php: fix, show only monitor in unknow status when you click in the "Unknown monitors" in tactical agent view. -2009-10-09 Miguel de Dios +2009-10-14 Miguel de Dios * general/ui/agents_list.php: remove the pass-by-reference in the two calls to "render_agent_field" because it are not necesary that in the function "render_agent_field" there aren't any change in the $agent param. + * include/styles/pandora.css: fix minor bug that the path to arrow.png was wrong. diff --git a/pandora_console/godmode/agentes/planned_downtime.php b/pandora_console/godmode/agentes/planned_downtime.php index e99e9f4430..de6ee25815 100644 --- a/pandora_console/godmode/agentes/planned_downtime.php +++ b/pandora_console/godmode/agentes/planned_downtime.php @@ -115,7 +115,8 @@ if ($create_downtime || $update_downtime) { } } } - +echo '

'.__('Agent configuration').' » '; +echo __('Planned Downtime').'

'; // Show create / update form if (($first_create != 0) OR ($first_update != 0)){ @@ -255,7 +256,6 @@ if ($create_downtime || $update_downtime) { // View available downtimes present in database (if any of them) $table->class = 'databox'; //Start Overview of existing planned downtime - echo '

'.__('Planned Downtime present on system').':

'; $table->width = '90%'; $table->data = array (); $table->head = array (); @@ -272,6 +272,7 @@ if ($create_downtime || $update_downtime) { if (!$downtimes) { echo '
'.__('No planned downtime').'
'; } else { + echo '

'.__('Planned Downtime present on system').':

'; foreach ($downtimes as $downtime) { $data = array(); $total = get_db_sql ("SELECT COUNT(id_agent) FROM tplanned_downtime_agents WHERE id_downtime = ".$downtime["id"]); diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 9cfab1423e..27099fd1e9 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 = 'PC091013'; +$build_version = 'PC091016'; $pandora_version = 'v3.0RC1'; $config['start_time'] = microtime (true);