Email Queue - Job & Service: Fix variable issues to mitigate errors.

This commit is contained in:
fusionate
2023-08-01 00:14:00 +00:00
parent 2c298113f6
commit d4d5799342
2 changed files with 22 additions and 5 deletions

View File

@@ -104,7 +104,7 @@
//create the process id file if the process doesn't exist
if (!$pid_exists) {
//remove the old pid file
if (file_exists($file)) {
if (file_exists($pid_file)) {
unlink($pid_file);
}