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. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2020 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
053609d307
commit
36c9210284
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue