EDMIService: Fix internal Placeholders

This commit is contained in:
Jonathan Jenne
2022-03-15 16:34:54 +01:00
parent 65ef8ccbc7
commit 1b5e724750
3 changed files with 15 additions and 13 deletions

View File

@@ -38,7 +38,7 @@ Namespace Modules
' Replace CurrentDate(s)
While ContainsPatternAndValue(oResult, PatternIdentifier, INT_VALUE_DATE_YYYY_MM_DD)
Logger.Trace("Replacing Pattern [{0}]", INT_VALUE_DATE_YYYY_MM_DD)
oResult = ReplacePattern(oResult, PatternIdentifier, oNow.ToString("yyyy/MM/dd"))
oResult = ReplacePattern(oResult, PatternIdentifier, oNow.ToString("yyyy\\MM\\dd"))
IncrementCounterOrThrow(oCounter)
End While