From 6c02fa40f11b2d1bd6d058a569a31ac249975e7e Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Tue, 31 Mar 2020 20:15:09 +0200 Subject: Check if POSIX PHP module is available on PID check --- Zotlabs/Daemon/Expire.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zotlabs/Daemon/Expire.php') 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; } -- cgit v1.2.3