aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2020-03-31 20:15:09 +0200
committerMax Kostikov <max@kostikov.co>2020-03-31 20:15:09 +0200
commit6c02fa40f11b2d1bd6d058a569a31ac249975e7e (patch)
tree72bd39aa5a6a2d133df5ebc76ca13af9a53cafef /Zotlabs/Daemon
parent632996f53e0ff364566a95536b94614387c2582a (diff)
downloadvolse-hubzilla-6c02fa40f11b2d1bd6d058a569a31ac249975e7e.tar.gz
volse-hubzilla-6c02fa40f11b2d1bd6d058a569a31ac249975e7e.tar.bz2
volse-hubzilla-6c02fa40f11b2d1bd6d058a569a31ac249975e7e.zip
Check if POSIX PHP module is available on PID check
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r--Zotlabs/Daemon/Expire.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Expire.php b/Zotlabs/Daemon/Expire.php
index c8fb72bb2..374f919e6 100644
--- a/Zotlabs/Daemon/Expire.php
+++ b/Zotlabs/Daemon/Expire.php
@@ -9,7 +9,7 @@ class Expire {
cli_startup();
- if ($pid = get_xconfig(0, 'expire', 'procid', false) && posix_getpgid($pid)) {
+ if ($pid = get_xconfig(0, 'expire', 'procid', false) && (function_exists('posix_getpgid') ? posix_getpgid($pid) : true)) {
logger('Expire: procedure already run with PID ' . $pid, LOGGER_DEBUG);
return;
}