Skip to content

Commit

Permalink
#4342 - HTML entity issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
WasimM3 committed Jun 17, 2020
1 parent 69a8461 commit 2825cf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/features.php
Original file line number Diff line number Diff line change
Expand Up @@ -8005,7 +8005,7 @@ function ampforwp_process_last_filter_content($content){
$node->parentNode->removeChild($node);
}
}
$content = $comp_dom->saveHTML();
$content = html_entity_decode($comp_dom->saveHTML());
return $content;
}

Expand Down Expand Up @@ -8413,7 +8413,7 @@ function ampforwp_rank_math_external_link_newtab($content){
}
}
}
$content = $comp_dom->saveHTML();
$content = html_entity_decode($comp_dom->saveHTML());
}
return $content;
}
Expand Down Expand Up @@ -8623,7 +8623,7 @@ function ampforwp_wp_rocket_compatibility($content){
}
}
}
$content = $comp_dom->saveHTML();
$content = html_entity_decode($comp_dom->saveHTML());
}
}
return $content;
Expand Down

0 comments on commit 2825cf2

Please sign in to comment.