diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index 5ec3d35cfe..9e4d0abbc5 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,10 @@
+2013-12-10  Sergio Martin <sergio.martin@artica.es>
+
+	* include/functions_events.php: Fix storing of event 
+	comments in metaconsole and shot the event comments more
+	recent first. 
+	Incident #440
+
 2013-12-09  Sergio Martin <sergio.martin@artica.es>
 
 	* include/styles/pandora.css: Fix styles in group view
diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php
index c999285006..0f1c402de0 100644
--- a/pandora_console/include/functions_events.php
+++ b/pandora_console/include/functions_events.php
@@ -547,7 +547,7 @@ function events_comment ($id_event, $comment = '', $action = 'Added comment', $m
 	if (is_array($id_event)) {
 		$first_event = reset($id_event);
 	}
-	$event_comments = db_get_value('user_comment', 'tevento', 'id_evento', $first_event);
+	$event_comments = db_get_value('user_comment', $event_table, 'id_evento', $first_event);
 	$event_comments_array = array();
 	
 	if ($event_comments == '') {
@@ -2259,6 +2259,9 @@ function events_page_comments ($event) {
 	// If comments are not stored in json, the format is old
 	$event_comments_array = json_decode($event_comments, true);
 	
+	// Show the comments more recent first
+	$event_comments_array = array_reverse($event_comments_array);
+	
 	if (is_null($event_comments_array)) {
 		$comments_format = 'old';
 	}