Skip to content

Commit bf7714a

Browse files
committed
Correct warning message
1 parent b73e978 commit bf7714a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/cron.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
$pid = trim(file_get_contents($conf['temppath'] . $conf['fs_div'] . '.ispconfig_cron_lock'));
3838
if(preg_match('/^[0-9]+$/', $pid)) {
3939
if(file_exists('/proc/' . $pid)) {
40-
if($conf['log_priority'] <= LOGLEVEL_WARN) print @date('d.m.Y-H:i').' - WARNING - There is already an instance of server.php running with pid ' . $pid . '.' . "\n";
40+
if($conf['log_priority'] <= LOGLEVEL_WARN) print @date('d.m.Y-H:i').' - WARNING - There is already an instance of cron.php running with pid ' . $pid . '.' . "\n";
4141
exit;
4242
}
4343
}

0 commit comments

Comments
 (0)