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:
parent
586f6f0ee7
commit
dbc914672d
|
@ -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
|
||||
|
|
|
@ -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&sec2=godmode/agentes/planned_downtime&edit_downtime=1&first_update=1&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);
|
||||
}
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue