From 92f3c6d1db41dec4cb1d9e5bdb59d89fee256e6e Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Fri, 26 Jun 2020 17:55:16 +0200 Subject: [PATCH] Fix content transfer --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 9dba850..d38be94 100644 --- a/index.php +++ b/index.php @@ -43,7 +43,7 @@ if(is_array($match) && is_callable($match['target'])) { case 'profile': $content = file_get_contents('pages/profile.html'); $content = str_replace('%UID%', $match['params']['uid'], $content); - print($content); + echo $content; break; } } else {