Merge pull request #520 from rabuzarus/20180206_-_membersince_frio_support
membersince: fix utf-8 encoding issues
This commit is contained in:
commit
29cf1539a7
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ function membersince_display(&$a, &$b)
|
||||||
if (current_theme() == 'frio') {
|
if (current_theme() == 'frio') {
|
||||||
// Works in Frio.
|
// Works in Frio.
|
||||||
$doc = new DOMDocument();
|
$doc = new DOMDocument();
|
||||||
$doc->loadHTML($b);
|
$doc->loadHTML(mb_convert_encoding($b, 'HTML-ENTITIES', 'UTF-8'));
|
||||||
|
|
||||||
$elm = $doc->getElementById('aprofile-fullname');
|
$elm = $doc->getElementById('aprofile-fullname');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue