Skip to content

Commit

Permalink
Fix quoting of string literals from double to single (#6530)
Browse files Browse the repository at this point in the history
  • Loading branch information
PTR-inc authored Nov 15, 2024
1 parent dd21f14 commit 5a1a97c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion db.js
Original file line number Diff line number Diff line change
Expand Up @@ -4150,7 +4150,7 @@ module.exports.CreateDB = function (parent, func) {

function dbMergeSqlArray(arr) {
var x = '';
for (var i in arr) { if (x != '') { x += ','; } x += '"' + arr[i] + '"'; }
for (var i in arr) { if (x != '') { x += ','; } x += '\'' + arr[i] + '\''; }
return x;
}

Expand Down

0 comments on commit 5a1a97c

Please sign in to comment.