Skip to content

Commit

Permalink
Move location of alerts-lastsent file.
Browse files Browse the repository at this point in the history
Missed this in 5b45bcf.
  • Loading branch information
dracos committed May 29, 2024
1 parent fc19d7f commit ff45950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/alertmailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ function mlog($message) {
$sss .= (getmicrotime() - $global_start) . "\n\n";
mlog($sss);
if (!$nomail && !$onlyemail) {
$fp = fopen('alerts-lastsent', 'w');
$fp = fopen(RAWDATA . '/alerts-lastsent', 'w');
fwrite($fp, time() . "\n");
fwrite($fp, $max_batch_id);
fclose($fp);
Expand Down

0 comments on commit ff45950

Please sign in to comment.