diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index 90d88cbdff..0e5f430429 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,7 @@
+2010-11-02  Raúl Mateos <raulofpandora@gmail.com>
+
+	* extensions/pandora_logs.php: Fixed html typos.
+
 2010-11-01  Miguel de Dios  <miguel.dedios@artica.es>
 	
 	* include/functions_db.php: in function "format_array_to_where_clause_sql"
@@ -331,7 +335,6 @@
 	
 	* godmode/setup/setup.php: Use added images.
 
->>>>>>> .r3474
 2010-10-25  Junichi Satoh  <junichi@rworks.jp>
 
 	* godmode/agentes/module_manager_editor_network.php: Added enterprise
diff --git a/pandora_console/extensions/pandora_logs.php b/pandora_console/extensions/pandora_logs.php
index f013f99c83..dd98572767 100644
--- a/pandora_console/extensions/pandora_logs.php
+++ b/pandora_console/extensions/pandora_logs.php
@@ -16,12 +16,12 @@ function view_logfile ($file_name) {
 	global $config;
 
 	if (!file_exists($file_name)){
-		echo "<h2 class=error>".__("Cannot find file"). "(".$file_name;
-		echo ")</h1>";
+		echo "<h2 class='error'>".__("Cannot find file"). "(".$file_name;
+		echo ")</h2>";
 	}  else {
 		if (filesize ($file_name) > 512000) {
-			echo "<h2 class=error>".__("File is too large (> 500KB)"). "(".$file_name;
-			echo ")</h1>";
+			echo "<h2 class='error'>".__("File is too large (> 500KB)"). "(".$file_name;
+			echo ")</h2>";
 		} else {
 			$data = file_get_contents ($file_name);			
 			echo "<h2>$file_name (".format_numeric(filesize ($file_name)/1024)." KB) </h2>";