add newline at the end of pidfile

darcs-hash:20080904191517-84dde-7bc5b62f26d10c7e865b483df90356a5eaea0205.gz
This commit is contained in:
Evan Prodromou 2008-09-04 15:15:17 -04:00
parent 32a189220c
commit dfae116c47
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class Daemon {
return false;
}
file_put_contents($pidfilename, posix_getpid());
file_put_contents($pidfilename, posix_getpid() . "\n");
}
function clearPidFile() {