GenWork #148

Merged
jjenko merged 7 commits from GenWork into Development 2023-11-01 09:05:57 -04:00
Showing only changes of commit 128b5d81cc - Show all commits

View File

@ -613,7 +613,8 @@ namespace VEPROMS.CSLA.Library
return retval;
}
string newvalue = value;
newvalue = newvalue.Replace("{", @"\{").Replace("}", @"\}");
// B2023-108: Added check for null reference
if (newvalue != null) newvalue = newvalue.Replace("{", @"\{").Replace("}", @"\}");
string findLink = @"<START\].*?\[END>";
MatchCollection ms = Regex.Matches(Text, findLink);
//string lookFor = string.Format(@"<START\](\\[^v \\]+)*\\v0(\\[^v \\]+)* (.*?)(\\[^v '?\\]+)*\\v(\\[^v \\]+)* #Link:ReferencedObject:{0} .*?\[END>", rousg.ROUsageID);