From: Tobias Diekershoff Date: Sat, 8 Aug 2020 06:47:21 +0000 (+0200) Subject: fopen error messages X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ef0ecf243a4ee25079eb8b2386d0f869047d7877;p=friendica.git fopen error messages --- diff --git a/src/Console/ServerBlock.php b/src/Console/ServerBlock.php index 40d8e45e74..d052612e1f 100644 --- a/src/Console/ServerBlock.php +++ b/src/Console/ServerBlock.php @@ -112,6 +112,9 @@ HELP; $filename = $this->getArgument(1); $blocklist = $config->get('system', 'blocklist', []); $fp = fopen($filename, 'w'); + if (!$fp) { + throw new Exception(sprintf('The file "%s" could not be created.', $filename)); + } foreach ($blocklist as $domain) { fputcsv($fp, $domain); } @@ -156,6 +159,8 @@ HELP; return 1; } + } else { + throw new Exception(sprintf('The file "%s" could not be opened for importing', $filename)); } }