Merge branch 'master' into nwsexperiment

This commit is contained in:
calzoneman 2013-06-04 15:16:23 -04:00
commit 8bda02723b
1 changed files with 2 additions and 0 deletions

View File

@ -79,6 +79,8 @@ function createQuery(template, args) {
template = first + template.substring(idx).replace("?", arg); template = first + template.substring(idx).replace("?", arg);
last = idx + arg.length; last = idx + arg.length;
} }
template = template.replace(/`'/g, "`");
template = template.replace(/'`/g, "`");
return template; return template;
} }