Case-sensitivity

This commit is contained in:
MarkBaker 2015-07-15 23:22:11 +01:00
parent 78378f1c88
commit 1e4988e12c

View File

@ -588,7 +588,7 @@ class PHPExcel_Helper_HTML
$this->initialise(); $this->initialise();
// Create a new DOM object // Create a new DOM object
$dom = new domDocument; $dom = new \DOMDocument;
// Load the HTML file into the DOM object // Load the HTML file into the DOM object
// Note the use of error suppression, because typically this will be an html fragment, so not fully valid markup // Note the use of error suppression, because typically this will be an html fragment, so not fully valid markup
$loaded = @$dom->loadHTML($html); $loaded = @$dom->loadHTML($html);