Skip to content

Commit

Permalink
replace aCopia for laLista
Browse files Browse the repository at this point in the history
  • Loading branch information
Irwin1985 committed Sep 11, 2023
1 parent ed6f7b9 commit 9250381
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified jsonfox.app
Binary file not shown.
2 changes: 1 addition & 1 deletion src/jsonclass.prg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ define class JSONClass as session
LastErrorText = ""
lError = .f.
lShowErrors = .t.
version = "9.10"
version = "9.11"
hidden lInternal
hidden lTablePrompt
Dimension aCustomArray[1]
Expand Down
2 changes: 1 addition & 1 deletion src/objecttojson.prg
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ define class ObjectToJSON as session
*local array aCopia(alen(tValue. &gaMembers[j]))
local array laLista[1]
=acopy(tValue. &gaMembers[j], laLista)
lcJSONStr = lcJSONStr + this.AnyToJson(@aCopia)
lcJSONStr = lcJSONStr + this.AnyToJson(@laLista)
catch
try
lcJSONStr = lcJSONStr + this.AnyToJson(tValue. &gaMembers[j])
Expand Down

0 comments on commit 9250381

Please sign in to comment.