We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81cd5e8 commit a6e9604Copy full SHA for a6e9604
eppSync.php
@@ -77,7 +77,7 @@ function connectEpp($config)
77
$epp = connectEpp($config);
78
79
foreach ($domains as $domainRow) {
80
- $domain = $domainRow['sld'] . '.' . $domainRow['tld'];
+ $domain = rtrim($domainRow['sld'], '.') . '.' . ltrim($domainRow['tld'], '.');
81
$params = ["domainname" => $domain];
82
$domainInfo = $epp->domainInfo($params);
83
0 commit comments