Skip to content

Commit

Permalink
Fix fatal error with PHP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
girishpanchal30 committed Sep 3, 2024
1 parent 8be2c3b commit 08a424c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/admin/feedzy-rss-feeds-actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ private function modify_links() {
libxml_use_internal_errors( true );
$dom->loadHTML( $content, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD );
$xpath = new DOMXPath( $dom );
libxml_clear_errors( true );
libxml_clear_errors();
// Get all anchors tags.
$nodes = $xpath->query( '//a' );

Expand Down

0 comments on commit 08a424c

Please sign in to comment.