Fix namespace

DOMDocument class missing namespace prefix
This commit is contained in:
Stephen Vickers 2016-08-15 21:34:26 -06:00
parent 170088d891
commit 40a128db54
1 changed files with 1 additions and 1 deletions

View File

@ -1155,7 +1155,7 @@ EOF;
$this->extResponse = $http->response;
$this->extResponseHeaders = $http->responseHeaders;
try {
$this->extDoc = new DOMDocument();
$this->extDoc = new \DOMDocument();
$this->extDoc->loadXML($http->response);
$this->extNodes = $this->domnodeToArray($this->extDoc->documentElement);
if (isset($this->extNodes['statusinfo']['codemajor']) && ($this->extNodes['statusinfo']['codemajor'] === 'Success')) {