mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
fixed custom report's summatory in case module is uncompressed
This commit is contained in:
parent
ef28abc460
commit
6f7ab8b435
@ -9300,6 +9300,7 @@ function reporting_get_agentmodule_data_sum ($id_agent_module,
|
||||
$id_module_type);
|
||||
$module_interval = modules_get_interval ($id_agent_module);
|
||||
$uncompressed_module = is_module_uncompressed ($module_name);
|
||||
|
||||
|
||||
// Wrong module type
|
||||
if (is_module_data_string ($module_name)) {
|
||||
@ -9309,7 +9310,17 @@ function reporting_get_agentmodule_data_sum ($id_agent_module,
|
||||
// Incremental modules are treated differently
|
||||
$module_inc = is_module_inc ($module_name);
|
||||
|
||||
if (!$uncompressed_module)
|
||||
if ($uncompressed_module) {
|
||||
// Get module data
|
||||
$interval_data = db_get_all_rows_sql('
|
||||
SELECT * FROM tagente_datos
|
||||
WHERE id_agente_modulo = ' . (int) $id_agent_module . '
|
||||
AND utimestamp > ' . (int) $datelimit . '
|
||||
AND utimestamp < ' . (int) $date . '
|
||||
ORDER BY utimestamp ASC', $search_in_history_db);
|
||||
|
||||
}
|
||||
else
|
||||
$interval_data = db_uncompress_module_data((int) $id_agent_module, (int) $datelimit, (int) $date);
|
||||
|
||||
if ($interval_data === false) $interval_data = array ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user