Skip to content

Commit af027e5

Browse files
🔃 [EngCom] Public Pull Requests - 2.1-develop
Accepted Public Pull Requests: - #14323: #7816: Customer_account.xml file abused (2.1) (by @mikewhitby) - #14417: [BACKPORT 2.1] Removed cache backend option which explicitly set file permissions (by @xtremeperf) Fixed GitHub Issues: - #7816: Customer_account.xml file abused (reported by @LiamFielding) has been fixed in #14323 by @mikewhitby in 2.1-develop branch Related commits: 1. 509e5c4 2. 4f30a3c - #10700: Magento 2 Admin panel show loading on each page (reported by @historylife) has been fixed in #14417 by @xtremeperf in 2.1-develop branch Related commits: 1. e577458 - #11930: setup:di:compile's generated cache files inaccessible by the web-server user (reported by @JanisE) has been fixed in #14417 by @xtremeperf in 2.1-develop branch Related commits: 1. e577458
2 parents d18fda2 + 46e89ba commit af027e5

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

app/code/Magento/Customer/Controller/Account/Index.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ public function __construct(
3535
*/
3636
public function execute()
3737
{
38-
/** @var \Magento\Framework\View\Result\Page $resultPage */
39-
$resultPage = $this->resultPageFactory->create();
40-
$resultPage->getConfig()->getTitle()->set(__('My Account'));
41-
return $resultPage;
38+
return $this->resultPageFactory->create();
4239
}
4340
}

app/code/Magento/Customer/view/frontend/layout/customer_account.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
*/
77
-->
88
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="2columns-left" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd" label="Customer My Account (All Pages)" design_abstraction="custom">
9+
<head>
10+
<title>My Account</title>
11+
</head>
912
<body>
1013
<attribute name="class" value="account"/>
1114
<referenceContainer name="sidebar.main">

app/code/Magento/Paypal/view/frontend/layout/customer_account.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@
66
*/
77
-->
88
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
9-
<head>
10-
<title>Billing Agreements</title>
11-
</head>
129
<body>
1310
<referenceBlock name="customer_account_navigation">
1411
<block class="Magento\Framework\View\Element\Html\Link\Current" name="customer-account-navigation-billing-agreements-link">

lib/internal/Magento/Framework/App/Cache/Frontend/Factory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ class Factory
6868
*/
6969
protected $_backendOptions = [
7070
'hashed_directory_level' => 1,
71-
'hashed_directory_umask' => 0777,
7271
'file_name_prefix' => 'mage',
7372
];
7473

0 commit comments

Comments
 (0)