1
0
Fork 0
mirror of https://github.com/fernwerker/ownDynDNS.git synced 2025-07-09 13:55:12 +02:00

remove debug echo

This commit is contained in:
Pascal Haury 2023-05-01 12:29:29 +02:00
parent 8712f5458e
commit 784bfcca2c

View file

@ -17,7 +17,7 @@ if (!file_exists('.env')) {
$config = parse_ini_file('.env', false, INI_SCANNER_TYPED); $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']); $domains = explode(',', $_REQUEST['domain']);
// Loop through each domain and call the Handler // 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 // Create a new request object with the current domain
$request = $_REQUEST; $request = $_REQUEST;
$request['domain'] = trim($domain); $request['domain'] = trim($domain);
// echo "Processing domain: {$domain}\n";
// Call the Handler with the current domain // Call the Handler with the current domain