Skip to content

Commit edb3fd2

Browse files
committed
Do not escape slashes
1 parent 23d5f68 commit edb3fd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/controller.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function getRequest($name, $default = NULL){
5959
}
6060

6161
public function sendResult(array $result){
62-
echo json_encode($result);
62+
echo json_encode($result, JSON_UNESCAPED_SLASHES);
6363
die();
6464
}
6565

0 commit comments

Comments
 (0)