Commit a1c45d1a authored by Project Open's avatar Project Open

- JSON doesn't quote single quotes according to specs

parent e0ac10c8
......@@ -715,7 +715,7 @@ ad_proc -public im_quotejson { str } {
} {
regsub -all {\\} $str {\\\\} str
regsub -all {"} $str {\"} str
regsub -all {'} $str {\'} str
# regsub -all {'} $str {\'} str
regsub -all {\n} $str {\\n} str
regsub -all {\r} $str {\\r} str
regsub -all {\t} $str {\\t} str
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment