Skip to content

Commit b4ec49d

Browse files
committed
Update company url to https
1 parent 2b63d0c commit b4ec49d

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

Block/Adminhtml/Email/Edit.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Copyright © MagePal LLC. All rights reserved.
44
* See COPYING.txt for license details.
5-
* http://www.magepal.com | [email protected]
5+
* https://www.magepal.com | [email protected]
66
*/
77

88
namespace MagePal\EditOrderEmail\Block\Adminhtml\Email;

Controller/Adminhtml/Edit/Index.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Copyright © MagePal LLC. All rights reserved.
44
* See COPYING.txt for license details.
5-
* http://www.magepal.com | [email protected]
5+
* https://www.magepal.com | [email protected]
66
*/
77

88
namespace MagePal\EditOrderEmail\Controller\Adminhtml\Edit;
@@ -139,7 +139,7 @@ public function execute()
139139
$order->addStatusHistoryComment($comment);
140140
$order->setCustomerEmail($emailAddress);
141141
$this->orderRepository->save($order);
142-
142+
143143
foreach ($order->getAddressesCollection() as $address)
144144
{
145145
$address->setEmail($emailAddress)->save();

Helper/Data.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Copyright © MagePal LLC. All rights reserved.
44
* See COPYING.txt for license details.
5-
* http://www.magepal.com | [email protected]
5+
* https://www.magepal.com | [email protected]
66
*/
77
namespace MagePal\EditOrderEmail\Helper;
88

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<a href="http://www.magepal.com" ><img src="https://image.ibb.co/dHBkYH/Magepal_logo.png" width="100" align="right" /></a>
1+
<a href="https://www.magepal.com" ><img src="https://image.ibb.co/dHBkYH/Magepal_logo.png" width="100" align="right" /></a>
22

33
## Magento2 - Edit Order Email Address
44

etc/acl.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<?xml version="1.0" ?>
1+
<?xml version="1.0"?>
22
<!--
33
/**
44
* Copyright © MagePal LLC. All rights reserved.
55
* See COPYING.txt for license details.
6-
* http://www.magepal.com | [email protected]
6+
* https://www.magepal.com | [email protected]
77
*/
88
-->
99
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Acl/etc/acl.xsd">

etc/adminhtml/routes.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Copyright © MagePal LLC. All rights reserved.
55
* See COPYING.txt for license details.
6-
* http://www.magepal.com | [email protected]
6+
* https://www.magepal.com | [email protected]
77
*/
88
-->
99
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">

etc/adminhtml/system.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Copyright © MagePal LLC. All rights reserved.
55
* See COPYING.txt for license details.
6-
* http://www.magepal.com | [email protected]
6+
* https://www.magepal.com | [email protected]
77
*/
88
-->
99
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd">

etc/module.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Copyright © MagePal LLC. All rights reserved.
55
* See COPYING.txt for license details.
6-
* http://www.magepal.com | [email protected]
6+
* https://www.magepal.com | [email protected]
77
*/
88
-->
99
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">

view/adminhtml/templates/email.phtml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Copyright © MagePal LLC. All rights reserved.
44
* See COPYING.txt for license details.
5-
* http://www.magepal.com | [email protected]
5+
* https://www.magepal.com | [email protected]
66
*/
77

88
/** @var $block MagePal\EditOrderEmail\Block\Adminhtml\Email\Edit */
@@ -51,4 +51,4 @@
5151
}
5252
}
5353
}
54-
</script>
54+
</script>

view/adminhtml/web/js/email.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Copyright © MagePal LLC. All rights reserved.
33
* See COPYING.txt for license details.
4-
* http://www.magepal.com | [email protected]
4+
* https://www.magepal.com | [email protected]
55
*/
66

77
define([
@@ -103,4 +103,4 @@ define([
103103
return false;
104104
});
105105
}
106-
});
106+
});

0 commit comments

Comments
 (0)