2009-10-16 Raul Mateos <raulofpandora@gmail.com>
* include/config_process.php: Update build after last changes. * godmode/agentes/planned_downtime*.php: Improving integrity of appareance in title. * Changelog: Correct some dates. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2031 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
96b39feeb0
commit
4290454d15
|
@ -1,4 +1,13 @@
|
|||
2009-10-17 Sancho Lerena <slerena@artica.es>
|
||||
2009-10-16 Raul Mateos <raulofpandora@gmail.com>
|
||||
|
||||
* 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 <slerena@artica.es>
|
||||
|
||||
* 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 <miguel.dedios@artica.es>
|
||||
2009-10-14 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* 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.
|
||||
|
||||
|
|
|
@ -115,7 +115,8 @@ if ($create_downtime || $update_downtime) {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
echo '<h2>'.__('Agent configuration').' » ';
|
||||
echo __('Planned Downtime').'</h2>';
|
||||
// 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 '<h3>'.__('Planned Downtime present on system').':</h3>';
|
||||
$table->width = '90%';
|
||||
$table->data = array ();
|
||||
$table->head = array ();
|
||||
|
@ -272,6 +272,7 @@ if ($create_downtime || $update_downtime) {
|
|||
if (!$downtimes) {
|
||||
echo '<div class="nf">'.__('No planned downtime').'</div>';
|
||||
} else {
|
||||
echo '<h3>'.__('Planned Downtime present on system').':</h3>';
|
||||
foreach ($downtimes as $downtime) {
|
||||
$data = array();
|
||||
$total = get_db_sql ("SELECT COUNT(id_agent) FROM tplanned_downtime_agents WHERE id_downtime = ".$downtime["id"]);
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
/**
|
||||
* Pandora build version and version
|
||||
*/
|
||||
$build_version = 'PC091013';
|
||||
$build_version = 'PC091016';
|
||||
$pandora_version = 'v3.0RC1';
|
||||
|
||||
$config['start_time'] = microtime (true);
|
||||
|
|
Loading…
Reference in New Issue