diff options
Diffstat (limited to 'Zotlabs/Daemon/Expire.php')
-rw-r--r-- | Zotlabs/Daemon/Expire.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Daemon/Expire.php b/Zotlabs/Daemon/Expire.php index bc9e720e9..4bdf7ddeb 100644 --- a/Zotlabs/Daemon/Expire.php +++ b/Zotlabs/Daemon/Expire.php @@ -9,12 +9,12 @@ class Expire { cli_startup(); - if ($pid = get_xconfig(0, 'expire', 'procid', false) && (function_exists('posix_kill') ? posix_kill($pid, 0) : true)) { + if ($pid = get_pconfig(0, 'expire', 'procid', false) && (function_exists('posix_kill') ? posix_kill($pid, 0) : true)) { logger('Expire: procedure already run with PID ' . $pid, LOGGER_DEBUG); return; } - - set_xconfig(0, 'expire', 'procid', getmypid()); + + set_pconfig(0, 'expire', 'procid', getmypid()); // perform final cleanup on previously delete items @@ -98,6 +98,6 @@ class Expire { logger('Expire: sys: done', LOGGER_DEBUG); } - del_xconfig(0, 'expire', 'procid'); + del_pconfig(0, 'expire', 'procid'); } } |