membersince: fix utf-8 encoding issues

pull/520/head
rabuzarus 2018-02-07 17:01:27 +01:00
parent 9faa56702a
commit a307bf472e
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ function membersince_display(&$a, &$b)
if (current_theme() == 'frio') {
// Works in Frio.
$doc = new DOMDocument();
$doc->loadHTML($b);
$doc->loadHTML(mb_convert_encoding($b, 'HTML-ENTITIES', 'UTF-8'));
$elm = $doc->getElementById('aprofile-fullname');