From c136c142b8148abe75696ca0076a107f04e74d30 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Wed, 1 Apr 2020 12:59:12 +0200 Subject: Use config instead pconfig --- Zotlabs/Daemon/Expire.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Zotlabs') diff --git a/Zotlabs/Daemon/Expire.php b/Zotlabs/Daemon/Expire.php index 4bdf7ddeb..f3f42df6f 100644 --- a/Zotlabs/Daemon/Expire.php +++ b/Zotlabs/Daemon/Expire.php @@ -9,12 +9,12 @@ class Expire { cli_startup(); - if ($pid = get_pconfig(0, 'expire', 'procid', false) && (function_exists('posix_kill') ? posix_kill($pid, 0) : true)) { + if ($pid = get_config('expire', 'procid', false) && (function_exists('posix_kill') ? posix_kill($pid, 0) : true)) { logger('Expire: procedure already run with PID ' . $pid, LOGGER_DEBUG); return; } - set_pconfig(0, 'expire', 'procid', getmypid()); + set_config('expire', 'procid', getmypid()); // perform final cleanup on previously delete items @@ -98,6 +98,6 @@ class Expire { logger('Expire: sys: done', LOGGER_DEBUG); } - del_pconfig(0, 'expire', 'procid'); + del_config('expire', 'procid'); } } -- cgit v1.2.3