Skip to content

Commit 8901244

Browse files
Merge pull request #194 from magento-cia/cia-2.4.8-develop-2.4-develop-sync-02212025
Cia 2.4.8 develop 2.4 develop sync 02212025
2 parents c3a71b2 + a26e09b commit 8901244

File tree

10 files changed

+22
-22
lines changed

10 files changed

+22
-22
lines changed

ReCaptchaWishlist/Observer/ShareWishlistObserver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2024 Adobe
4+
* All rights reserved.
55
*/
66
declare(strict_types=1);
77

ReCaptchaWishlist/Test/Integration/ShareWishlistFormTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2024 Adobe
4+
* All rights reserved.
55
*/
66
declare(strict_types=1);
77

ReCaptchaWishlist/etc/adminhtml/system.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0"?>
22
<!--
33
/**
4-
* Copyright © Magento, Inc. All rights reserved.
5-
* See COPYING.txt for license details.
4+
* Copyright 2024 Adobe
5+
* All Rights Reserved.
66
*/
77
-->
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

ReCaptchaWishlist/etc/config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0"?>
22
<!--
33
/**
4-
* Copyright © Magento, Inc. All rights reserved.
5-
* See COPYING.txt for license details.
4+
* Copyright 2024 Adobe
5+
* All Rights Reserved.
66
*/
77
-->
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

ReCaptchaWishlist/etc/frontend/events.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0"?>
22
<!--
33
/**
4-
* Copyright © Magento, Inc. All rights reserved.
5-
* See COPYING.txt for license details.
4+
* Copyright 2024 Adobe
5+
* All Rights Reserved.
66
*/
77
-->
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

ReCaptchaWishlist/etc/module.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0"?>
22
<!--
33
/**
4-
* Copyright © Magento, Inc. All rights reserved.
5-
* See COPYING.txt for license details.
4+
* Copyright 2024 Adobe
5+
* All Rights Reserved.
66
*/
77
-->
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

ReCaptchaWishlist/registration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2024 Adobe
4+
* All rights reserved.
55
*/
66
declare(strict_types=1);
77

ReCaptchaWishlist/view/frontend/layout/wishlist_index_share.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0"?>
22
<!--
33
/**
4-
* Copyright © Magento, Inc. All rights reserved.
5-
* See COPYING.txt for license details.
4+
* Copyright 2024 Adobe
5+
* All Rights Reserved.
66
*/
77
-->
88
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

ReCaptchaWishlist/view/frontend/web/css/source/_module.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* Copyright © Magento, Inc. All rights reserved.
3-
* See COPYING.txt for license details.
2+
* Copyright 2024 Adobe
3+
* All rights reserved.
44
*/
55
.form.wishlist.share .g-recaptcha {
66
margin-bottom: 40px;

TwoFactorAuth/Test/Integration/UserConfigRequestManagerTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
3-
* Copyright © Magento, Inc. All rights reserved.
4-
* See COPYING.txt for license details.
3+
* Copyright 2015 Adobe
4+
* All Rights Reserved.
55
*/
66

77
declare(strict_types=1);
@@ -136,7 +136,7 @@ public function testSendAppConfigRequest(): void
136136
$this->manager->sendConfigRequestTo($this->user);
137137

138138
$this->assertNotEmpty($message = $this->transportBuilderMock->getSentMessage());
139-
$messageHtml = $message->getBody()->getParts()[0]->getRawContent();
139+
$messageHtml = quoted_printable_decode($message->getBody()->bodyToString());
140140
$this->assertStringContainsString(
141141
'You are required to configure website-wide and personal Two-Factor Authorization in order to login to',
142142
$messageHtml
@@ -166,7 +166,7 @@ public function testSendUserConfigRequest(): void
166166
$this->manager->sendConfigRequestTo($this->user);
167167

168168
$this->assertNotEmpty($message = $this->transportBuilderMock->getSentMessage());
169-
$messageHtml = $message->getBody()->getParts()[0]->getRawContent();
169+
$messageHtml = quoted_printable_decode($message->getBody()->bodyToString());
170170
$this->assertStringContainsString(
171171
'You are required to configure personal Two-Factor Authorization in order to login to',
172172
$messageHtml

0 commit comments

Comments
 (0)