diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index 59a778fe6d..62b51eb5cf 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,8 @@
+2012-02-09 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
+
+	* godmode/snmpconsole/snmp_alert.php: Added 'None' value to trap 
+	type filter.
+
 2012-02-09 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
 
 	* godmode/snmpconsole/snmp_alert.php: Changed position of tables
diff --git a/pandora_console/godmode/snmpconsole/snmp_alert.php b/pandora_console/godmode/snmpconsole/snmp_alert.php
index 8b6148428f..2a7bd43056 100644
--- a/pandora_console/godmode/snmpconsole/snmp_alert.php
+++ b/pandora_console/godmode/snmpconsole/snmp_alert.php
@@ -208,7 +208,7 @@ if (isset ($_GET["update_alert"])) {
 
 	// Trap type
 	echo '<tr><td class="datos">'.__('Trap type').'</td><td class="datos">';
-	$trap_types = array(0 => 'Cold start (0)', 1 => 'Warm start (1)', 2 => 'Link down (2)', 3 => 'Link up (3)', 4 => 'Authentication failure (4)', -1 => 'Other');
+	$trap_types = array(-1 => __('None'), 0 => __('Cold start (0)'), 1 => __('Warm start (1)'), 2 => __('Link down (2)'), 3 => __('Link up (3)'), 4 => __('Authentication failure (4)'), 5 => __('Other'));
 	echo html_print_select ($trap_types, 'trap_type', $trap_type, '', '', '', false, false, false);
 	echo '</td></tr>';