2009-12-23 Sancho Lerena <slerena@artica.es>

* include/config_process.php: Updated build.

        * godmode/agentes/planned_downtime.php: Fixed bad render when
        * downtime
        is running.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2234 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2009-12-23 12:33:51 +00:00
parent d40c64d203
commit 569d49bd22
3 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2009-12-23 Sancho Lerena <slerena@artica.es>
* include/config_process.php: Updated build.
* godmode/agentes/planned_downtime.php: Fixed bad render when downtime
is running.
2009-12-23 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_db.php: fix warning messages when pass only group as

View File

@ -294,11 +294,15 @@ echo __('Planned Downtime').'</h2>';
<img src="images/cross.png" border="0" alt="'.__('Delete').'" /></a>';
$data[6] = '<a href="index.php?sec=gagente&amp;sec2=godmode/agentes/planned_downtime&amp;edit_downtime=1&amp;first_update=1&amp;id_downtime='.$downtime['id'].'">
<img src="images/config.png" border="0" alt="'.__('Update').'" /></a>';
} 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);
}

View File

@ -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 */