diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index abb598bb96..735854864d 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,8 @@
+2013-08-09 Miguel de Dios <miguel.dedios@artica.es>
+	
+	* godmode/snmpconsole/snmp_alert.php: change the text input for
+	description, now it is a textarea for large descriptions.
+
 2013-08-09 Miguel de Dios <miguel.dedios@artica.es>
 	
 	* godmode/snmpconsole/snmp_alert.php: fixed the PHP warnings for
diff --git a/pandora_console/godmode/snmpconsole/snmp_alert.php b/pandora_console/godmode/snmpconsole/snmp_alert.php
index 50d8a0d002..add33dd31b 100644
--- a/pandora_console/godmode/snmpconsole/snmp_alert.php
+++ b/pandora_console/godmode/snmpconsole/snmp_alert.php
@@ -325,8 +325,10 @@ if ($create_alert || $update_alert) {
 	echo '<table cellpadding="4" cellspacing="4" width="98%" class="databox" style="font-weight: bold">';
 	
 	// Description
-	echo '<tr><td class="datos">'.__('Description').'</td><td class="datos">';
-	html_print_input_text ("description", $description, '', 60);
+	echo '<tr><td class="datos" valign="top">'.__('Description').'</td><td class="datos">';
+	html_print_textarea('description', 3, 2, $description, 'style="width:400px;"');
+	
+	//html_print_input_text ("description", $description, '', 60);
 	echo '</td></tr>';
 	
 	//echo '<tr><td class="datos"><b>' . __('Alert filters') . ui_print_help_icon("snmp_alert_filters", true) . '</b></td></tr>';