We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0053f2d commit fea2401Copy full SHA for fea2401
1 file changed
src/Includes/JsonRendererLauncher.php
@@ -53,7 +53,7 @@ function renderer_json($mode){
53
$outputArray = $transformer->run($outputArray);
54
55
// Now put the array through a json_encode
56
- $output = json_encode($outputArray, JSON_PRETTY_PRINT);
+ $output = json_encode($outputArray, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
57
58
} catch(\Exception $e) {
59
// This happened because the input was not valid XML. This could
0 commit comments