1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-06-07 23:34:00 +00:00

Bugfix action-raw: add missing implode

This commit is contained in:
Starbeamrainbowlabs 2022-06-30 01:43:54 +01:00
parent 9bc1380a7b
commit 96eb694a1d
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -49,10 +49,10 @@ register_module([
header("content-type: text/markdown");
header("content-disposition: inline");
header("content-length: " . filesize($env->page_filename));
header("x-tags: " . str_replace(
header("x-tags: " . implode(", ", str_replace(
["\n", ":"], "",
$pageindex->{$env->page}->tags
));
)));
exit(file_get_contents($env->page_filename));
});