mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 08:14:38 +02:00
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
8e100dc60c
commit
61d11a5d44
@ -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>
|
2009-10-13 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
* operation/events/events.php: Replaced old icon (red cross) by a
|
* operation/events/events.php: Replaced old icon (red cross) by a
|
||||||
|
@ -138,9 +138,9 @@ if ($agents !== false) {
|
|||||||
$data = array ();
|
$data = array ();
|
||||||
foreach ($table_renders as $name => $values) {
|
foreach ($table_renders as $name => $values) {
|
||||||
if (! is_numeric ($name)) {
|
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 {
|
} 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);
|
array_push ($table->data, $data);
|
||||||
|
@ -522,7 +522,7 @@ div.title_line {
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
#menu_tab li:hover a {
|
#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 {
|
#menu_tab li:hover ul a, #menu_tab .mn ul {
|
||||||
background: #db6351;
|
background: #db6351;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user