B2020-089: Page number transitions not resolving correctly in HLS that are upper cased
This commit is contained in:
@@ -592,7 +592,7 @@ namespace VEPROMS.CSLA.Library
|
||||
SqlConnection cn = (SqlConnection)ApplicationContext.LocalContext["cn"];
|
||||
string pattern = string.Format(@"<START\]\\v0([^#]*)\\v #Link:Transition(|Range):[0-9]* <CTID={0}>( [0-9]*){{1,2}}\[END>", _TransitionID);
|
||||
Match m = Regex.Match(myContent.Text, pattern);
|
||||
if (m.Groups.Count > 1 && m.Groups[1].Value.Contains("(Page ~)"))
|
||||
if (m.Groups.Count > 1 && m.Groups[1].Value.ToUpper().Contains("(PAGE ~)")) // B2020-089, check for upper case Page ~ in case step was upper cased
|
||||
_Config = "<Config><Transition Formatted=\"True\" /></Config>";
|
||||
else
|
||||
_Config = string.Empty;
|
||||
|
Reference in New Issue
Block a user