Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding dot as subdomain separator
  • Loading branch information
tekbreak committed Dec 3, 2018
1 parent 30a2419 commit 9ebdd50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/create-Redirection/apiv6.php
Expand Up @@ -40,7 +40,7 @@
// If record include A, AAAA or CNAME for subdomain asked, we delete it
if ( in_array( $record['fieldType'], array( 'A', 'AAAA', 'CNAME' ) ) ) {

echo "We will delete field " . $record['fieldType'] . " for " . $record['subDomain'] . $record['zone'] . PHP_EOL;
echo "We will delete field " . $record['fieldType'] . " for " . $record['subDomain'] . "." . $record['zone'] . PHP_EOL;
$conn->delete('/domain/zone/' . $domain . '/record/' . $recordId);
}
}
Expand Down

0 comments on commit 9ebdd50

Please sign in to comment.