diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index e317290c7d..2c032e3f29 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,8 @@ +2009-02-11 Evi Vanoost + + * bin/pandora_server: Fixed Data server. Wouldn't start because of + mismatched arguments. + 2009-02-11 Sancho Lerena * bin/pandora_network: Restored lock for icmp / ping calls. diff --git a/pandora_server/bin/pandora_server b/pandora_server/bin/pandora_server index 0074de804a..fed240bc90 100755 --- a/pandora_server/bin/pandora_server +++ b/pandora_server/bin/pandora_server @@ -472,8 +472,7 @@ sub pandora_exec_forced_alerts { AND force_execution = 1", $dbh); foreach my $alert (@alerts) { - execute_alert ($pa_config, $alert, $alert->{'id_agente'}, $alert->{'id_grupo'}, $alert->{'nombre'}, - '', 1, $dbh); + execute_alert ($pa_config, $alert, $alert->{'id_agente'}, $alert->{'id_grupo'}, $alert->{'nombre'},'', 1, 0, $dbh); # Reset the force_execution flag, even if the alert could not be executed db_do ("UPDATE talert_template_modules SET force_execution = 0 WHERE id = " . $alert->{'id_template_module'}, $dbh);