Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
GuidoPreite committed Feb 18, 2022
1 parent 52e21aa commit fc83ae3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions js/drb.generatecode.js
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,7 @@ DRB.GenerateCode.ParseFilterCriteria = function (query, configurationObject) {
if (DRB.Utilities.HasValue(filterField.value)) { clearedValue = filterField.value; }
if (filterField.type === "EntityName" || filterField.type === "String" || filterField.type === "Memo") {
clearedValue = clearedValue.replace(/"/g, '\\"');
clearedValue = clearedValue.replace(/'/g, "''");
clearedValue = "'" + clearedValue + "'";
}

Expand Down
2 changes: 1 addition & 1 deletion js/drb.initialize.js
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ DRB.InsertMainBodyContent = function () {
*/
DRB.Initialize = async function () {
// DRB Version
var drbVersion = "1.0.0.33";
var drbVersion = "1.0.0.34";
document.title = document.title + " " + drbVersion;
$("#" + DRB.DOM.VersionSpan.Id).html(drbVersion);

Expand Down
3 changes: 2 additions & 1 deletion js/drb_custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -5805,6 +5805,7 @@ DRB.GenerateCode.ParseFilterCriteria = function (query, configurationObject) {
if (DRB.Utilities.HasValue(filterField.value)) { clearedValue = filterField.value; }
if (filterField.type === "EntityName" || filterField.type === "String" || filterField.type === "Memo") {
clearedValue = clearedValue.replace(/"/g, '\\"');
clearedValue = clearedValue.replace(/'/g, "''");
clearedValue = "'" + clearedValue + "'";
}

Expand Down Expand Up @@ -17006,7 +17007,7 @@ DRB.InsertMainBodyContent = function () {
*/
DRB.Initialize = async function () {
// DRB Version
var drbVersion = "1.0.0.33";
var drbVersion = "1.0.0.34";
document.title = document.title + " " + drbVersion;
$("#" + DRB.DOM.VersionSpan.Id).html(drbVersion);

Expand Down

0 comments on commit fc83ae3

Please sign in to comment.