diff --git a/module/VuFind/src/VuFind/ILS/Driver/Aleph.php b/module/VuFind/src/VuFind/ILS/Driver/Aleph.php index aed979204d03a5e409dcc20f59a159235f4fc7c8..1028780cc8a41ebfd20cc223afecf4634d0f9b49 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Aleph.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Aleph.php @@ -567,7 +567,7 @@ class Aleph extends AbstractBase implements \Zend\Log\LoggerAwareInterface, $this->debug("url: $url response: $answer"); } $answer = str_replace('xmlns=', 'ns=', $answer); - $result = simplexml_load_string($answer); + $result = @simplexml_load_string($answer); if (!$result) { if ($this->debug_enabled) { $this->debug("XML is not valid, URL: $url");