Fix formatting

This commit is contained in:
troosan 2021-02-07 15:06:01 +01:00 committed by GitHub
parent f7242e1250
commit 26e479422a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -610,8 +610,8 @@ class TemplateProcessor
// replace on each iteration, because in one tag we can have 2+ inline variables => before proceed next variable we need to change $partContent // replace on each iteration, because in one tag we can have 2+ inline variables => before proceed next variable we need to change $partContent
$partContent = $this->setValueForPart($wholeTag, $replaceXml, $partContent, $limit); $partContent = $this->setValueForPart($wholeTag, $replaceXml, $partContent, $limit);
} }
$i++;
if($i >= $limit) { if (++$i >= $limit) {
break; break;
} }
} }