Error/Warning 1093 – simple_html_dom.php – fixed
-
Hi, I came along a warning/error – debug: 1093 in the simple_html_dom.php file.
I just fixed it by doing the following:/* LINE 1093 if ($this->dom) { $sourceCharset = strtoupper($this->dom->_charset); $targetCharset = strtoupper($this->dom->_target_charset); } */ if ($this->dom && isset($this->dom->_charset)) { $sourceCharset = strtoupper($this->dom->_charset); $targetCharset = isset($this->dom->_target_charset) ? strtoupper($this->dom->_target_charset) : ''; }
Would you mind adding it to the update cycle? Currently I’ve solved it only by overwriting the core file… not ideal but good enough for now.
Ty
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Error/Warning 1093 – simple_html_dom.php – fixed’ is closed to new replies.