Skip to content

Commit 4c4ee08

Browse files
committed
Remove org.json lib fork and use new version of the API https://github.com/steary/JSON-java
1 parent a2f506e commit 4c4ee08

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

gxweb/src/main/java/com/genexus/internet/HttpAjaxContext.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,6 +1197,11 @@ else if (parm.getClass().isArray())
11971197
}
11981198
else
11991199
{
1200+
if (parm instanceof Date) {
1201+
LocalUtil localUtil = Application.getClientLocalUtil();
1202+
inputs.put(localUtil.format((Date)parm, localUtil.getDateFormat() + " " + localUtil.getTimeFormat()));
1203+
}
1204+
else
12001205
inputs.put(parm);
12011206
}
12021207
}

0 commit comments

Comments
 (0)