#9140 Fixed comments

This commit is contained in:
Daniel Maya 2022-06-29 15:34:09 +02:00
parent f48d3a9849
commit 43b2a3d47e
1 changed files with 19 additions and 21 deletions

View File

@ -96,29 +96,27 @@ if ($get_comments === true) {
$eventsGrouped = []; $eventsGrouped = [];
// Consider if the event is grouped. // Consider if the event is grouped.
$whereGrouped = '1=1'; $whereGrouped = '1=1';
if (isset($event['event_rep']) === true && $event['event_rep'] > 0) { // Default grouped message filtering (evento and estado).
// Default grouped message filtering (evento and estado). $whereGrouped = sprintf(
$whereGrouped = sprintf( '`evento` = "%s" AND `estado` = "%s" AND `event_type` = "%s" ',
'`evento` = "%s" AND `estado` = "%s" AND `event_type` = "%s" ', $event['evento'],
$event['evento'], $event['estado'],
$event['estado'], $event['event_type']
$event['event_type'] );
// If id_agente is reported, filter the messages by them as well.
if ((int) $event['id_agente'] > 0) {
$whereGrouped .= sprintf(
' AND `id_agente` = %d',
(int) $event['id_agente']
); );
}
// If id_agente is reported, filter the messages by them as well. if ((int) $event['id_agentmodule'] > 0) {
if ((int) $event['id_agente'] > 0) { $whereGrouped .= sprintf(
$whereGrouped .= sprintf( ' AND `id_agentmodule` = %d',
' AND `id_agente` = %d', (int) $event['id_agentmodule']
(int) $event['id_agente'] );
);
}
if ((int) $event['id_agentmodule'] > 0) {
$whereGrouped .= sprintf(
' AND `id_agentmodule` = %d',
(int) $event['id_agentmodule']
);
}
} }
try { try {