Skip to content

Commit 22eac8e

Browse files
🔃 [EngCom] Public Pull Requests - 2.2-develop
Accepted Public Pull Requests: - #15549: Fixed typo error (by @vgelani) - #15552: Remove extra space and format the code in translation file (by @saurabh-aureate) - #15519: Typo correction (by @saurabh-aureate) - #15517: Use stored value of method instead of calling same method again. (by @saurabh-aureate) - #15468: Issue 15467 where a configuration sku gets deleted but is still saved� (by @jonshipman) - #15459: [Resolved : UI Component listing action column outside of screen when… (by @hitesh-wagento) - #15514: Fix method name (typo) (by @avoelkl) Fixed GitHub Issues: - #15467: Cart does not load when Configuration product option is deleted and that option is in the cart (reported by @jonshipman) has been fixed in #15468 by @jonshipman in 2.2-develop branch Related commits: 1. 1e36495 2. caa818e - #14153: UI Component listing action column outside of screen when too many columns (reported by @milansimek) has been fixed in #15459 by @hitesh-wagento in 2.2-develop branch Related commits: 1. 2cc78bc
2 parents 1ce8c0a + 47e1b69 commit 22eac8e

File tree

14 files changed

+32
-18
lines changed

14 files changed

+32
-18
lines changed

app/code/Magento/Captcha/i18n/en_US.csv

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ Forms,Forms
2020
"Number of Symbols","Number of Symbols"
2121
"Please specify 8 symbols at the most. Range allowed (e.g. 3-5)","Please specify 8 symbols at the most. Range allowed (e.g. 3-5)"
2222
"Symbols Used in CAPTCHA","Symbols Used in CAPTCHA"
23-
"
24-
Please use only letters (a-z or A-Z) or numbers (0-9) in this field. No spaces or other characters are allowed.<br />Similar looking characters (e.g. ""i"", ""l"", ""1"") decrease chance of correct recognition by customer.
25-
","
26-
Please use only letters (a-z or A-Z) or numbers (0-9) in this field. No spaces or other characters are allowed.<br />Similar looking characters (e.g. ""i"", ""l"", ""1"") decrease chance of correct recognition by customer.
27-
"
23+
"Please use only letters (a-z or A-Z) or numbers (0-9) in this field. No spaces or other characters are allowed.<br />Similar looking characters (e.g. ""i"", ""l"", ""1"") decrease chance of correct recognition by customer.","Please use only letters (a-z or A-Z) or numbers (0-9) in this field. No spaces or other characters are allowed.<br />Similar looking characters (e.g. ""i"", ""l"", ""1"") decrease chance of correct recognition by customer."
2824
"Case Sensitive","Case Sensitive"
2925
"Enable CAPTCHA on Storefront","Enable CAPTCHA on Storefront"
3026
"CAPTCHA for ""Create user"" and ""Forgot password"" forms is always enabled if chosen.","CAPTCHA for ""Create user"" and ""Forgot password"" forms is always enabled if chosen."

app/code/Magento/Catalog/Model/Product/Type/AbstractType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public function getChildrenIds($parentId, $required = true)
251251
}
252252

253253
/**
254-
* Retrieve parent ids array by requered child
254+
* Retrieve parent ids array by required child
255255
*
256256
* @param int|array $childId
257257
* @return array

app/code/Magento/Config/Block/System/Config/Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ protected function _getAdditionalElementTypes()
709709
}
710710

711711
/**
712-
* Temporary moved those $this->getRequest()->getParam('blabla') from the code accross this block
712+
* Temporary moved those $this->getRequest()->getParam('blabla') from the code across this block
713713
* to getBlala() methods to be later set from controller with setters
714714
*/
715715

app/code/Magento/ConfigurableImportExport/Model/Import/Product/Type/Configurable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ protected function _insertData()
637637
}
638638

639639
/**
640-
* Get new supper attribute id.
640+
* Get new super attribute id.
641641
*
642642
* @return int
643643
*/

app/code/Magento/ConfigurableProduct/Block/Cart/Item/Renderer/Configurable.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,11 @@ public function getProductForThumbnail()
6868
self::CONFIG_THUMBNAIL_SOURCE,
6969
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
7070
) == ThumbnailSource::OPTION_USE_PARENT_IMAGE ||
71-
!($this->getChildProduct()->getThumbnail() && $this->getChildProduct()->getThumbnail() != 'no_selection')
71+
!(
72+
$this->getChildProduct() &&
73+
$this->getChildProduct()->getThumbnail() &&
74+
$this->getChildProduct()->getThumbnail() != 'no_selection'
75+
)
7276
) {
7377
$product = $this->getProduct();
7478
} else {

app/code/Magento/ConfigurableProduct/CustomerData/ConfigurableItem.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,11 @@ protected function getProductForThumbnail()
6363
);
6464

6565
$product = $config == ThumbnailSource::OPTION_USE_PARENT_IMAGE
66-
|| (!$this->getChildProduct()->getThumbnail() || $this->getChildProduct()->getThumbnail() == 'no_selection')
66+
|| (
67+
!$this->getChildProduct() ||
68+
!$this->getChildProduct()->getThumbnail() ||
69+
$this->getChildProduct()->getThumbnail() == 'no_selection'
70+
)
6771
? $this->getProduct()
6872
: $this->getChildProduct();
6973

app/code/Magento/Customer/Model/Session.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ public function setAfterAuthUrl($url)
555555
}
556556

557557
/**
558-
* Reset core session hosts after reseting session ID
558+
* Reset core session hosts after resetting session ID
559559
*
560560
* @return $this
561561
*/

app/code/Magento/Marketplace/view/adminhtml/templates/partners.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
$partners = $block->getPartners();
1212
?>
1313
<?php if ($partners) : ?>
14-
<?php foreach ($block->getPartners() as $partner) : ?>
14+
<?php foreach ($partners as $partner) : ?>
1515
<div class="partner">
1616
<img
1717
class="partner-image"

app/code/Magento/Multishipping/Block/Checkout/AbstractMultishipping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
/**
8-
* Multishipping checkout base abstract block
8+
* Mustishipping checkout base abstract block
99
*
1010
* @author Magento Core Team <[email protected]>
1111
*/

app/code/Magento/Multishipping/Block/Checkout/Overview.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,9 +319,19 @@ public function getQuote()
319319
}
320320

321321
/**
322+
* @deprecated
323+
* typo in method name, see getBillingAddressTotals()
322324
* @return mixed
323325
*/
324326
public function getBillinAddressTotals()
327+
{
328+
return $this->getBillingAddressTotals();
329+
}
330+
331+
/**
332+
* @return mixed
333+
*/
334+
public function getBillingAddressTotals()
325335
{
326336
$address = $this->getQuote()->getBillingAddress();
327337
return $this->getShippingAddressTotals($address);

app/code/Magento/Multishipping/Block/Checkout/Shipping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Magento\Quote\Model\Quote\Address;
1010

1111
/**
12-
* Multishipping checkout shipping
12+
* Mustishipping checkout shipping
1313
*
1414
* @api
1515
* @author Magento Core Team <[email protected]>

app/code/Magento/Multishipping/view/frontend/templates/checkout/overview.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
<?php endforeach; ?>
187187
</tbody>
188188
<tfoot>
189-
<?= /* @noEscape */ $block->renderTotals($block->getBillinAddressTotals()); ?>
189+
<?= /* @noEscape */ $block->renderTotals($block->getBillingAddressTotals()); ?>
190190
</tfoot>
191191
</table>
192192
</div>

app/code/Magento/User/Model/Backend/Config/ObserverConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function getAdminPasswordLifetime()
7272
}
7373

7474
/**
75-
* Get admin maximum security failures from config
75+
* Get admin maxiumum security failures from config
7676
*
7777
* @return int
7878
*/

app/design/adminhtml/Magento/backend/Magento_Ui/web/css/source/module/_data-grid.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ body._in-resize {
236236

237237
th,
238238
td {
239-
font-size: @data-grid__font-size; // ToDo UI: Rewrite old styles. Should be deleted afterwards
239+
font-size: @data-grid__font-size; // Rewrite old styles. Should be deleted afterwards
240240
line-height: @line-height__base;
241241
transition: @smooth__background-color;
242242
vertical-align: top;
@@ -304,7 +304,7 @@ body._in-resize {
304304
.action-menu {
305305
left: auto;
306306
min-width: 10rem;
307-
right: auto;
307+
right: 0;
308308
text-align: left;
309309
top: auto;
310310
z-index: 1;

0 commit comments

Comments
 (0)