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