mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 23:09:29 -07:00
Fix content transfer
This commit is contained in:
parent
a3abf17937
commit
92f3c6d1db
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue