2011-11-15 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* operation/events/events_validate.php
	operation/events/events.php: Fixed php warning and a wrong 
	description.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5139 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2011-11-15 18:04:19 +00:00
parent 58c98d54a2
commit 97cb36754e
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2011-11-15 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* operation/events/events_validate.php
operation/events/events.php: Fixed php warning and a wrong
description.
2011-11-15 Sancho lerena <slerena@artica.es>
* godmode/snmpconsole/snmp_trap_generator.php: Fixed tool to generate

View File

@ -57,7 +57,7 @@ if (is_ajax ()) {
echo agents_get_name ($event["id_agente"]);
}
else {
echo __('Alert').__('SNMP');
echo '';
}
echo '<br />';
echo '<strong>'.__('Timestamp').': </strong><br />';

View File

@ -67,6 +67,10 @@ foreach($ids as $key => $id) {
$img_st = "images/star.png";
$title_st = __('New event');
break;
case 1:
$img_st = "images/tick.png";
$title_st = __('Event validated');
break;
case 2:
$img_st = "images/hourglass.png";
$title_st = __('Event in process');