revert: Removed the '@' symbol from line 187 in 'misc/tools.php' as it is not recommended to use error suppression

This commit is contained in:
Junior L. Botelho (JLB) 2023-02-12 13:54:42 -03:00
parent c1c401a5f9
commit 9c17401c66
No known key found for this signature in database
GPG Key ID: 6A25840754F2A524
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@
function get_xpath($response)
{
$htmlDom = new DOMDocument;
$htmlDom->loadHTML($response);
@$htmlDom->loadHTML($response);
$xpath = new DOMXPath($htmlDom);
return $xpath;