Skip to content

Commit

Permalink
Bugfix - add missing '&&'
Browse files Browse the repository at this point in the history
  • Loading branch information
terrencegf committed Jun 12, 2023
1 parent 0aa1e22 commit f5a37ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/IdpList.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public function readXML()
$doc = new DOMDocument();
if (
(is_readable($filename)) &&
(filesize($filename))
(filesize($filename)) &&
(($doc->load($filename, LIBXML_NOBLANKS)) !== false)
) {
$this->idpdom = $doc;
Expand Down

0 comments on commit f5a37ab

Please sign in to comment.