From 784bfcca2cf16aecdf812e6732f284f4c35a1029 Mon Sep 17 00:00:00 2001 From: Pascal Haury Date: Mon, 1 May 2023 12:29:29 +0200 Subject: [PATCH] remove debug echo --- update.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/update.php b/update.php index 18f7754..aab42c2 100755 --- a/update.php +++ b/update.php @@ -17,7 +17,7 @@ if (!file_exists('.env')) { $config = parse_ini_file('.env', false, INI_SCANNER_TYPED); -// Get the domains from the URL parameter +// Get the domains from the URL parameter and split them from the comma separated string $domains = explode(',', $_REQUEST['domain']); // Loop through each domain and call the Handler @@ -25,7 +25,6 @@ foreach ($domains as $domain) { // Create a new request object with the current domain $request = $_REQUEST; $request['domain'] = trim($domain); - // echo "Processing domain: {$domain}\n"; // Call the Handler with the current domain