diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index 15a899ea80..3d76c43ece 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,9 @@
+2011-09-05  Miguel de Dios  <miguel.dedios@artica.es>
+	
+	* extensions/system_info.php: show the location of file.
+	
+	Fixes: #3384516
+
 2011-09-05  Miguel de Dios  <miguel.dedios@artica.es>
 	
 	* godmode/agentes/planned_downtime.php: fixed to avoid create or update
diff --git a/pandora_console/extensions/system_info.php b/pandora_console/extensions/system_info.php
index da6f6198cd..a7b56e3d83 100644
--- a/pandora_console/extensions/system_info.php
+++ b/pandora_console/extensions/system_info.php
@@ -331,7 +331,8 @@ function mainSystemInfo() {
 		}
 
 		$url = '<a href="' .$http.$_SERVER['HTTP_HOST'].$config["homeurl"].'/attachment/last_info.zip">' . __('System info file zipped') . '</a>';
-		echo '<b>' . __('File:') . '</b> ' . $url;
+		echo '<b>' . __('File:') . '</b> ' . $url . '<br />';
+		echo '<b>' . __('Location:') . '</b> ' . $zipArchive;
     	
 		$zip = new ZipArchive;