diff options
author | Max Kostikov <max@kostikov.co> | 2019-09-10 10:41:34 +0200 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-09-10 10:41:34 +0200 |
commit | bffc9d5aba78359c009581c2398c2df6a94e85e1 (patch) | |
tree | 6efc4d2304c3f7d8889b0f2cf50c0ec707747a6d | |
parent | f2b121cd58fd4884c09b3d0474f5ac4443d4b0e9 (diff) | |
parent | e800e2db2b6149cb1a3d32bb111fc23eb8bcc2c4 (diff) | |
download | volse-hubzilla-bffc9d5aba78359c009581c2398c2df6a94e85e1.tar.gz volse-hubzilla-bffc9d5aba78359c009581c2398c2df6a94e85e1.tar.bz2 volse-hubzilla-bffc9d5aba78359c009581c2398c2df6a94e85e1.zip |
Merge branch 'daemon-qwfix' into 'dev'
Return in the case of further processing
See merge request hubzilla/core!1711
-rw-r--r-- | Zotlabs/Daemon/Cron.php | 2 | ||||
-rw-r--r-- | Zotlabs/Daemon/CurlAuth.php | 6 | ||||
-rw-r--r-- | Zotlabs/Daemon/Master.php | 2 | ||||
-rw-r--r-- | Zotlabs/Daemon/Poller.php | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/Zotlabs/Daemon/Cron.php b/Zotlabs/Daemon/Cron.php index fe356bcbf..a08d2b7d2 100644 --- a/Zotlabs/Daemon/Cron.php +++ b/Zotlabs/Daemon/Cron.php @@ -215,7 +215,7 @@ class Cron { $restart = true; $generation = intval($argv[2]); if(! $generation) - killme(); + return; } reload_plugins(); diff --git a/Zotlabs/Daemon/CurlAuth.php b/Zotlabs/Daemon/CurlAuth.php index be12bc779..de41382e3 100644 --- a/Zotlabs/Daemon/CurlAuth.php +++ b/Zotlabs/Daemon/CurlAuth.php @@ -13,7 +13,7 @@ class CurlAuth { static public function run($argc,$argv) { if($argc != 2) - killme(); + return; \App::$session->start(); @@ -50,6 +50,6 @@ class CurlAuth { file_put_contents($c,$x); - killme(); + return; } -}
\ No newline at end of file +} diff --git a/Zotlabs/Daemon/Master.php b/Zotlabs/Daemon/Master.php index 67a3acc0a..8c3a7e570 100644 --- a/Zotlabs/Daemon/Master.php +++ b/Zotlabs/Daemon/Master.php @@ -9,7 +9,7 @@ if(array_search( __file__ , get_included_files()) === 0) { if($argc) Master::Release($argc,$argv); - killme(); + return; } diff --git a/Zotlabs/Daemon/Poller.php b/Zotlabs/Daemon/Poller.php index 84bf7e923..ebc0584ba 100644 --- a/Zotlabs/Daemon/Poller.php +++ b/Zotlabs/Daemon/Poller.php @@ -47,7 +47,7 @@ class Poller { $restart = true; $generation = intval($argv[2]); if(! $generation) - killme(); + return; } if(($argc > 1) && intval($argv[1])) { |