mirror of
https://github.com/moodle/moodle.git
synced 2025-05-14 20:26:19 +02:00
MDL-55374 mod_assign: Force utf-8 for DOMDocument
This prevents charset issues on some sites.
This commit is contained in:
parent
90a8bdbfc0
commit
fca211bf05
@ -119,7 +119,7 @@ EOD;
|
||||
*/
|
||||
protected static function strip_images($html) {
|
||||
$dom = new DOMDocument();
|
||||
$dom->loadHTML($html);
|
||||
$dom->loadHTML("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>" . $html);
|
||||
$images = $dom->getElementsByTagName('img');
|
||||
$i = 0;
|
||||
|
||||
@ -135,7 +135,8 @@ EOD;
|
||||
$text = $dom->createTextNode($replacement);
|
||||
$node->parentNode->replaceChild($text, $node);
|
||||
}
|
||||
return $dom->saveHTML();
|
||||
$count = 1;
|
||||
return str_replace("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>", "", $dom->saveHTML(), $count);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user