Completed
Pull Request — master (#16)
by Michal
05:41 queued 03:57
created
src/Bridge/KdybyTranslation/TokenModifier/ParamsExtractorTokenModifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         for ($i = 0; $i < $matchesCount; ++$i) {
28 28
             $paramName = $this->createParamName($matches[1][$i]);
29 29
             $paramValue = $this->createParamValue($matches[1][$i]);
30
-            $targetText = str_replace($matches[0][$i], '%' . $paramName . '%', $targetText);
30
+            $targetText = str_replace($matches[0][$i], '%'.$paramName.'%', $targetText);
31 31
             $textParameters[$paramName] = $paramValue;
32 32
         }
33 33
 
Please login to merge, or discard this patch.