1
Fork 1
mirror of https://git.lolcat.ca/lolcat/4get.git synced 2024-09-13 17:28:08 -04:00

unescape forward slashes for urls in gen_config

This commit is contained in:
throwaway 2024-02-17 13:33:06 -08:00
parent c85d132211
commit 2c95931d43

View file

@ -28,7 +28,7 @@ function type_to_string($n) {
return "\"$n\"";
}
if ($type === "array") {
return json_encode($n);
return json_encode($n, JSON_UNESCAPED_SLASHES);
}
return $n;
}