1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-08 01:50:05 +00:00

fix: escaping labels in mp_jsonout when showmeta=YES. Closes #258

This commit is contained in:
Allan Bowe
2022-06-21 14:14:35 +00:00
parent c41ae2dcc8
commit ad315be503
5 changed files with 8 additions and 8 deletions

View File

@@ -263,7 +263,7 @@
do i=1 to &numcols;
name=quote(trim(symget(cats('name',i))));
format=quote(trim(symget(cats('fmt',i))));
label=quote(trim(symget(cats('label',i))));
label=quote(prxchange('s/\\/\\\\/',-1,trim(symget(cats('label',i)))));
length=quote(trim(symget(cats('length',i))));
type=quote(trim(symget(cats('typelong',i))));
if i>1 then put "," @@;