Fix content transfer

This commit is contained in:
Yarmo Mackenbach 2020-06-26 17:55:16 +02:00
parent a3abf17937
commit 92f3c6d1db

View file

@ -43,7 +43,7 @@ if(is_array($match) && is_callable($match['target'])) {
case 'profile': case 'profile':
$content = file_get_contents('pages/profile.html'); $content = file_get_contents('pages/profile.html');
$content = str_replace('%UID%', $match['params']['uid'], $content); $content = str_replace('%UID%', $match['params']['uid'], $content);
print($content); echo $content;
break; break;
} }
} else { } else {