Skip to content

Commit 7d1f448

Browse files
committedJun 11, 2018
ISLANDORA-2248: Prevent PHP Strict standards issue
Update signature of `_XMLDocument::loadHTMLFile()` to account for optional `$options` argument introduced in PHP 5.4.
1 parent ad83024 commit 7d1f448

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎xml/XMLDocument.inc

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class _XMLDocument extends DOMDocument {
226226
/**
227227
* Removed function.
228228
*/
229-
public function loadHTMLFile($filename) {
229+
public function loadHTMLFile($filename, $options = NULL) {
230230
throw new Exception(__FUNCTION__ . ' is not supported.');
231231
}
232232

0 commit comments

Comments
 (0)
Please sign in to comment.