diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog
index f9e4b2a10b..6c19e77e63 100644
--- a/pandora_console/ChangeLog
+++ b/pandora_console/ChangeLog
@@ -1,3 +1,11 @@
+2009-10-09  Miguel de Dios  <miguel.dedios@artica.es>
+
+	* general/ui/agents_list.php: remove the pass-by-reference in the two calls
+	to "render_agent_field" because it are not necesary that in the function
+	"render_agent_field" there aren't any change in the $agent param.
+	* include/styles/pandora.css: fix minor bug that the path to arrow.png was
+	wrong.
+
 2009-10-13  Sancho Lerena <slerena@artica.es>
 
 	* operation/events/events.php: Replaced old icon (red cross) by a 
diff --git a/pandora_console/general/ui/agents_list.php b/pandora_console/general/ui/agents_list.php
index b96b7fe107..7641266573 100644
--- a/pandora_console/general/ui/agents_list.php
+++ b/pandora_console/general/ui/agents_list.php
@@ -138,9 +138,9 @@ if ($agents !== false) {
 		$data = array ();
 		foreach ($table_renders as $name => $values) {
 			if (! is_numeric ($name)) {
-				array_push ($data, render_agent_field (&$agent, $name, $values, true));
+				array_push ($data, render_agent_field ($agent, $name, $values, true));
 			} else {
-				array_push ($data, render_agent_field (&$agent, $values, false, true));
+				array_push ($data, render_agent_field ($agent, $values, false, true));
 			}
 		}
 		array_push ($table->data, $data);
diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css
index 0cfe1de755..45a8c1885b 100644
--- a/pandora_console/include/styles/pandora.css
+++ b/pandora_console/include/styles/pandora.css
@@ -522,7 +522,7 @@ div.title_line {
 	color: #fff;
 }
 #menu_tab li:hover a {
-	background: #b2b08a url("../images/arrow.png") no-repeat right 3px;
+	background: #b2b08a url("../../images/arrow.png") no-repeat right 3px;
 }
 #menu_tab li:hover ul a, #menu_tab .mn ul {
 	background: #db6351;