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)
414414 $ skipParams = ['class ' , 'id ' , 'output ' ];
415415 $ blockParameters = $ this ->getParameters ($ construction [2 ]);
416416
417- if (isset ($ blockParameters ['cache_key ' ])) {
418- $ blockParameters ['cache_key ' ] = self ::CACHE_KEY_PREFIX . $ blockParameters ['cache_key ' ];
419- }
420-
421417 $ block = null ;
422418
423419 if (isset ($ blockParameters ['class ' ])) {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public function tokenize()
2525 }
2626
2727 if ($ this ->char () !== '= ' ) {
28- $ parameterName .= $ this ->char () !== null ? strtolower ( $ this -> char ()) : $ this -> char () ;
28+ $ parameterName .= $ this ->char ();
2929 } else {
3030 $ parameters [$ parameterName ] = $ this ->getValue ();
3131 $ parameterName = '' ;
You can’t perform that action at this time.
0 commit comments