2012-03-07 Miguel de Dios <miguel.dedios@artica.es>

* operation/agentes/estado_generalagente.php, operation/search_agents.php:
	fixed the style of name agent, now "text-transform: uppercase;".



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5706 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2012-03-07 09:58:41 +00:00
parent dfba8b4e36
commit a8ac9f4104
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2012-03-07 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/estado_generalagente.php, operation/search_agents.php:
fixed the style of name agent, now "text-transform: uppercase;".
2012-03-07 Miguel de Dios <miguel.dedios@artica.es>
* include/graphs/functions_gd.php: fixed into the function

View File

@ -76,10 +76,10 @@ echo '<table cellspacing="4" cellpadding="4" border="0" class="databox" style="w
//Agent name
echo '<tr><td class="datos"><b>'.__('Agent name').'</b></td>';
if ($agent['disabled']) {
$cellName = "<em>" . ui_print_agent_name ($agent["id_agente"], true, 500, "upper", true) . ui_print_help_tip(__('Disabled'), true) . "</em>";
$cellName = "<em>" . ui_print_agent_name ($agent["id_agente"], true, 500, "text-transform: uppercase;", true) . ui_print_help_tip(__('Disabled'), true) . "</em>";
}
else {
$cellName = ui_print_agent_name ($agent["id_agente"], true, 500, "upper", true);
$cellName = ui_print_agent_name ($agent["id_agente"], true, 500, "text-transform: uppercase;", true);
}
echo '<td class="datos"><b>'.$cellName.'</b></td>';
echo '<td class="datos" width="40"><a href="index.php?sec=estado&amp;sec2=operation/agentes/ver_agente&amp;id_agente='.$id_agente.'&amp;refr=60">' . html_print_image("images/refresh.png", true, array("border" => '0', "title" => __('Refresh data'), "alt" => "")) . '</a>&nbsp;';

View File

@ -262,10 +262,10 @@ else {
$modulesCell .= ' : <span class="grey">'.$agent_info["monitor_unknown"].'</span>';
if ($agent['disabled']) {
$cellName = "<em>" . ui_print_agent_name ($agent["id_agente"], true, "upper") . ui_print_help_tip(__('Disabled'), true) . "</em>";
$cellName = "<em>" . ui_print_agent_name ($agent["id_agente"], true, "text-transform: uppercase;") . ui_print_help_tip(__('Disabled'), true) . "</em>";
}
else {
$cellName = ui_print_agent_name ($agent["id_agente"], true, "upper");
$cellName = ui_print_agent_name ($agent["id_agente"], true, "text-transform: uppercase;");
}
$last_time = strtotime ($agent["ultimo_contacto"]);