forked from Korbs/4get
unescape forward slashes for urls in gen_config
This commit is contained in:
parent
c85d132211
commit
2c95931d43
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ function type_to_string($n) {
|
||||||
return "\"$n\"";
|
return "\"$n\"";
|
||||||
}
|
}
|
||||||
if ($type === "array") {
|
if ($type === "array") {
|
||||||
return json_encode($n);
|
return json_encode($n, JSON_UNESCAPED_SLASHES);
|
||||||
}
|
}
|
||||||
return $n;
|
return $n;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue