We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deef79a commit 6468283Copy full SHA for 6468283
app/code/Magento/Theme/Block/Html/Header.php
@@ -33,7 +33,7 @@ public function __construct(
33
\Magento\Framework\Escaper $escaper,
34
array $data = []
35
) {
36
- $this->_escaper = $escaper;
+ $this->escaper = $escaper;
37
parent::__construct($context, $data);
38
}
39
@@ -57,7 +57,7 @@ public function getWelcome()
57
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
58
);
59
60
- $this->_data['welcome'] = $this->_escaper->escapeQuote($this->_data['welcome'], true);
+ $this->_data['welcome'] = $this->escaper->escapeQuote($this->_data['welcome'], true);
61
return __($this->_data['welcome']);
62
63
0 commit comments