add comment that DOMDocument('1.0', 'UTF-8') does not work

This commit is contained in:
hannes 2016-01-28 15:32:11 +00:00
parent 06e325d61b
commit 05439831e7
1 changed files with 2 additions and 1 deletions

View File

@ -113,7 +113,8 @@ class oEmbedHelper
$utf8_evidence = true;
}
// add utf-8 encoding prolog if we have reason to believe this is utf-8 content
// add utf-8 encoding prolog if we have reason to believe this is utf-8 content
// DOMDocument('1.0', 'UTF-8') does not work!
$utf8_tag = $utf8_evidence ? '<?xml encoding="utf-8" ?>' : '';
$dom = new DOMDocument();