2010-05-13 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_reporting.php: fixed the empty cell. Fixes: #2996522 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2714 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e20156606a
commit
ce9a609683
|
@ -1,3 +1,8 @@
|
|||
2010-05-13 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_reporting.php: fixed the empty cell.
|
||||
Fixes: #2996522
|
||||
|
||||
2010-05-13 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/javascript/pandora.js: check if exist the "any" text translation.
|
||||
|
|
|
@ -1544,7 +1544,12 @@ function render_report_html_item ($content, $table, $report, $mini = false) {
|
|||
|
||||
|
||||
$module_name = get_db_value ('nombre', 'tagente_modulo', 'id_agente_modulo', $content['id_agent_module']);
|
||||
$agent_name = get_agentmodule_agent_name ($content['id_agent_module']);
|
||||
if ($content['id_agent_module'] != 0) {
|
||||
$agent_name = get_agentmodule_agent_name ($content['id_agent_module']);
|
||||
}
|
||||
else {
|
||||
$agent_name = get_agent_name($content['id_agent']);
|
||||
}
|
||||
|
||||
switch ($content["type"]) {
|
||||
case 1:
|
||||
|
|
Loading…
Reference in New Issue