File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
app/code/Magento/Email/Model/Template
lib/internal/Magento/Framework/Filter/Template/Tokenizer Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -414,10 +414,6 @@ public function blockDirective($construction)
414
414
$ skipParams = ['class ' , 'id ' , 'output ' ];
415
415
$ blockParameters = $ this ->getParameters ($ construction [2 ]);
416
416
417
- if (isset ($ blockParameters ['cache_key ' ])) {
418
- $ blockParameters ['cache_key ' ] = self ::CACHE_KEY_PREFIX . $ blockParameters ['cache_key ' ];
419
- }
420
-
421
417
$ block = null ;
422
418
423
419
if (isset ($ blockParameters ['class ' ])) {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public function tokenize()
25
25
}
26
26
27
27
if ($ this ->char () !== '= ' ) {
28
- $ parameterName .= $ this ->char () !== null ? strtolower ( $ this -> char ()) : $ this -> char () ;
28
+ $ parameterName .= $ this ->char ();
29
29
} else {
30
30
$ parameters [$ parameterName ] = $ this ->getValue ();
31
31
$ parameterName = '' ;
You can’t perform that action at this time.
0 commit comments