Skip to content

Commit a39a4e1

Browse files
committed
Removed : for checking host object parameters
1 parent d7e4fe7 commit a39a4e1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Protocols/EPP/eppResponses/eppInfoDomainResponse.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,10 @@ public function getDomainNameservers() {
210210
$ns = null;
211211
foreach ($result as $nameserver) {
212212
/* @var $nameserver \DOMElement */
213-
if (strstr($nameserver->tagName, ":hostObj")) {
213+
if (strstr($nameserver->tagName, "hostObj")) {
214214
$ns[] = new eppHost(trim($nameserver->nodeValue));
215215
}
216-
if (strstr($nameserver->tagName, ":hostAttr")) {
216+
if (strstr($nameserver->tagName, "hostAttr")) {
217217
$hostname = $nameserver->getElementsByTagName('hostName')->item(0)->nodeValue;
218218
$ipaddresses = $nameserver->getElementsByTagName('hostAddr');
219219
$ips = null;

0 commit comments

Comments
 (0)