Fix content transfer

This commit is contained in:
Yarmo Mackenbach 2020-06-26 17:59:17 +02:00
parent cacb224b8d
commit c18a32e5e1

View file

@ -41,9 +41,8 @@ if(is_array($match) && is_callable($match['target'])) {
break;
case 'profile':
$content = file_get_contents('pages/profile.html');
$content = file_get_contents('pages/profile.html', FALSE, NULL, 0, 36);
$content = str_replace('%UID%', $match['params']['uid'], $content);
$content = mb_convert_encoding($content, 'UTF-8', mb_detect_encoding($content, 'UTF-8, ISO-8859-1', true));
echo $content;
break;
}