Skip to content

Commit 70d0cbe

Browse files
author
Oleksii Korshenko
committed
Merge remote-tracking branch 'tango/MAGETWO-44772_pr_bugs' into bugs
2 parents 4e5e087 + 0f22c3f commit 70d0cbe

File tree

15 files changed

+460
-406
lines changed

15 files changed

+460
-406
lines changed

.htaccess

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,13 @@
129129

130130
</IfModule>
131131

132+
############################################
133+
## workaround for Apache 2.4.6 CentOS build when working via ProxyPassMatch with HHVM (or any other)
134+
## Please, set it on virtual host configuration level
135+
136+
## SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
137+
############################################
138+
132139
<IfModule mod_rewrite.c>
133140

134141
############################################

app/code/Magento/Backend/view/adminhtml/layout/default.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@
6767
</container>
6868
</container>
6969
</referenceContainer>
70-
<referenceContainer name="backend.page">
71-
<block class="Magento\Framework\View\Element\Template" name="page.loader" template="Magento_Backend::admin/loader.phtml" after="-"/>
72-
</referenceContainer>
7370
<referenceContainer name="after.body.start">
7471
<block class="Magento\RequireJs\Block\Html\Head\Config" name="requirejs-config"/>
7572
<block class="Magento\Translation\Block\Html\Head\Config" name="translate-config"/>

app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010

1111
<?php $_divId = 'tree' . $block->getId() ?>
1212
<div id="<?php /* @escapeNotVerified */ echo $_divId ?>" class="tree"></div>
13+
<!--[if IE]>
1314
<script id="ie-deferred-loader" defer="defer" src=""></script>
14-
<![]-->
15+
<![endif]-->
1516
<script>
1617
require(['jquery', "prototype", "extjs/ext-tree-checkbox"], function(jQuery){
1718

app/code/Magento/Newsletter/Test/Unit/Model/Queue/TransportBuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function testGetTransport(
103103

104104
$transport = $this->getMock('\Magento\Framework\Mail\TransportInterface');
105105

106-
$this->_mailTransportFactoryMock->expects(
106+
$this->mailTransportFactoryMock->expects(
107107
$this->at(0)
108108
)->method(
109109
'create'

app/code/Magento/User/Model/User.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ public function sendPasswordResetConfirmationEmail()
369369
{
370370
$templateId = $this->_config->getValue(self::XML_PATH_FORGOT_EMAIL_TEMPLATE);
371371
$transport = $this->_transportBuilder->setTemplateIdentifier($templateId)
372+
->setTemplateModel('Magento\Email\Model\BackendTemplate')
372373
->setTemplateOptions(['area' => FrontNameResolver::AREA_CODE, 'store' => Store::DEFAULT_STORE_ID])
373374
->setTemplateVars(['user' => $this, 'store' => $this->_storeManager->getStore(Store::DEFAULT_STORE_ID)])
374375
->setFrom($this->_config->getValue(self::XML_PATH_FORGOT_EMAIL_IDENTITY))
@@ -388,6 +389,7 @@ public function sendPasswordResetNotificationEmail()
388389
{
389390
$templateId = $this->_config->getValue(self::XML_PATH_RESET_PASSWORD_TEMPLATE);
390391
$transport = $this->_transportBuilder->setTemplateIdentifier($templateId)
392+
->setTemplateModel('Magento\Email\Model\BackendTemplate')
391393
->setTemplateOptions(['area' => FrontNameResolver::AREA_CODE, 'store' => Store::DEFAULT_STORE_ID])
392394
->setTemplateVars(['user' => $this, 'store' => $this->_storeManager->getStore(Store::DEFAULT_STORE_ID)])
393395
->setFrom($this->_config->getValue(self::XML_PATH_FORGOT_EMAIL_IDENTITY))

0 commit comments

Comments
 (0)