commit 784bfcca2cf16aecdf812e6732f284f4c35a1029
parent 8712f5458e622ec249ff2fafb8fb12d98c3f4ac6
Author: Pascal Haury <software@pascalhaury.de>
Date:   Mon,  1 May 2023 12:29:29 +0200
remove debug echo
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git 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