Merge pull request 'GenWork' (#148) from GenWork into Development
code change looks good. formats listed are OK too. The format files should not have been in this check-in, but I verified that last changes to these BNPP formats are still there.
This commit is contained in:
commit
e1249dccee
@ -613,7 +613,8 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
string newvalue = value;
|
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>";
|
string findLink = @"<START\].*?\[END>";
|
||||||
MatchCollection ms = Regex.Matches(Text, findLink);
|
MatchCollection ms = Regex.Matches(Text, findLink);
|
||||||
//string lookFor = string.Format(@"<START\](\\[^v \\]+)*\\v0(\\[^v \\]+)* (.*?)(\\[^v '?\\]+)*\\v(\\[^v \\]+)* #Link:ReferencedObject:{0} .*?\[END>", rousg.ROUsageID);
|
//string lookFor = string.Format(@"<START\](\\[^v \\]+)*\\v0(\\[^v \\]+)* (.*?)(\\[^v '?\\]+)*\\v(\\[^v \\]+)* #Link:ReferencedObject:{0} .*?\[END>", rousg.ROUsageID);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user