mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 07:44:35 +02:00
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
123016de9d
commit
ead5d50b9b
@ -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>
|
2010-05-13 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* include/javascript/pandora.js: check if exist the "any" text translation.
|
* 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']);
|
$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"]) {
|
switch ($content["type"]) {
|
||||||
case 1:
|
case 1:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user