Merge branch 'ent-7298-11667-no-envia-graficas-en-correo-de-nuevo-en-v753-2' into 'develop'

resolved error with mail graph

See merge request artica/pandorafms!4025
This commit is contained in:
Daniel Rodriguez 2021-04-13 12:36:47 +00:00
commit 1646a0bcb8
1 changed files with 2 additions and 2 deletions

View File

@ -1376,11 +1376,11 @@ sub pandora_execute_action ($$$$$$$$$;$) {
my $threshold = shift;
my $period = $hours * 3600; # Hours to seconds
if($threshold == 0){
$params->{"other"} = $period . '%7C0%7C0%7C225';
$params->{"other"} = $period . '%7C1%7C0%7C225';
$cid = 'module_graph_' . $hours . 'h';
}
else{
$params->{"other"} = $period . '%7C0%7C1%7C225';
$params->{"other"} = $period . '%7C1%7C1%7C225';
$cid = 'module_graphth_' . $hours . 'h';
}