aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/CurlAuth.php
diff options
context:
space:
mode:
authorDM42.Net Zap Dev <zapdev@dm42.net>2019-08-19 23:13:19 -0400
committerDM42.Net Zap Dev <zapdev@dm42.net>2019-08-19 23:13:19 -0400
commite800e2db2b6149cb1a3d32bb111fc23eb8bcc2c4 (patch)
treebaed15a7a0e5ad533c62cf6c8d7654d7685640e4 /Zotlabs/Daemon/CurlAuth.php
parente5539c0d01c1be0b9235aee4aec38f7860cc6959 (diff)
downloadvolse-hubzilla-e800e2db2b6149cb1a3d32bb111fc23eb8bcc2c4.tar.gz
volse-hubzilla-e800e2db2b6149cb1a3d32bb111fc23eb8bcc2c4.tar.bz2
volse-hubzilla-e800e2db2b6149cb1a3d32bb111fc23eb8bcc2c4.zip
Return in the case of further processing
Diffstat (limited to 'Zotlabs/Daemon/CurlAuth.php')
-rw-r--r--Zotlabs/Daemon/CurlAuth.php6
1 files changed, 3 insertions, 3 deletions
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
+}