Development #153

Merged
djankowski merged 15 commits from Development into master 2023-11-09 10:33:40 -05:00
Showing only changes of commit e1249dccee - 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);