Skip to content

Commit e958a13

Browse files
author
Yushkin, Dmytro
committed
Merge branch 'MAGETWO-40138' into develop
2 parents 18bfc0e + 8e6c67d commit e958a13

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

app/code/Magento/Paypal/Block/Bml/Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected function _construct()
3131
'https://www.securecheckout.billmelater.com/paycapture-content/'
3232
. 'fetch?hash=AU826TU8&content=/bmlweb/ppwpsiw.html'
3333
)->setPaymentAcceptanceMarkSrc(
34-
'https://www.paypalobjects.com/webstatic/en_US/i/buttons/ppc-acceptance-small.png'
34+
'https://www.paypalobjects.com/webstatic/en_US/i/buttons/ppc-acceptance-medium.png'
3535
)->setPaymentWhatIs(__('See terms'));
3636

3737
$this->_initializeRedirectTemplateWithMark($mark);

app/code/Magento/Paypal/Model/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ public function getPaymentMarkImageUrl($localeCode, $orderTotal = null, $pal = n
971971
case self::PAYMENT_MARK_LARGE:
972972
break;
973973
default:
974-
$staticSize = self::PAYMENT_MARK_SMALL;
974+
$staticSize = self::PAYMENT_MARK_MEDIUM;
975975
}
976976

977977
return sprintf(

app/code/Magento/Paypal/Test/Unit/Model/ConfigTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ public function dataProviderGetExpressCheckoutShortcutImageUrl()
347347
],
348348
[
349349
'en_US', null, null, Config::EC_FLAVOR_STATIC, false, Config::EC_BUTTON_TYPE_MARK,
350-
'https://www.paypalobjects.com/webstatic/en_US/i/buttons/pp-acceptance-small.png'
350+
'https://www.paypalobjects.com/webstatic/en_US/i/buttons/pp-acceptance-medium.png'
351351
],
352352
[
353353
'en_US', null, null, Config::EC_FLAVOR_STATIC, true, Config::EC_BUTTON_TYPE_SHORTCUT,
@@ -413,8 +413,8 @@ public function dataProviderGetPaymentMarkImageUrl()
413413
'https://fpdbs.paypal.com/dynamicimageweb?cmd=_dynamic-image&buttontype=ecmark&locale=en_GB'
414414
],
415415
[
416-
'en_US', null, null, 'small', Config::EC_FLAVOR_STATIC, true,
417-
'https://www.paypalobjects.com/webstatic/en_US/i/buttons/pp-acceptance-small.png'
416+
'en_US', null, null, 'medium', Config::EC_FLAVOR_STATIC, true,
417+
'https://www.paypalobjects.com/webstatic/en_US/i/buttons/pp-acceptance-medium.png'
418418
],
419419
[
420420
'en_US', null, null, 'medium', Config::EC_FLAVOR_STATIC, true,
@@ -426,7 +426,7 @@ public function dataProviderGetPaymentMarkImageUrl()
426426
],
427427
[
428428
'en_GB', null, null, 'affected', Config::EC_FLAVOR_STATIC, true,
429-
'https://www.paypalobjects.com/webstatic/en_US/i/buttons/pp-acceptance-small.png'
429+
'https://www.paypalobjects.com/webstatic/en_US/i/buttons/pp-acceptance-medium.png'
430430
],
431431
];
432432
}

app/code/Magento/Paypal/view/frontend/web/template/payment/payflow-express-bml.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
data-bind="attr: {'id': getCode()}, value: getCode(), checked: isChecked, click: selectPaymentMethod, visible: isRadioButtonVisible()" />
1313
<label data-bind="attr: {'for': getCode()}" class="label">
1414
<!-- PayPal Logo -->
15-
<img src="https://www.paypalobjects.com/webstatic/en_US/i/buttons/ppc-acceptance-small.png"
15+
<img src="https://www.paypalobjects.com/webstatic/en_US/i/buttons/ppc-acceptance-medium.png"
1616
data-bind="attr: {alt: $t('Acceptance Mark')}"
1717
class="payment-icon"/>
1818
<!-- PayPal Logo -->

app/code/Magento/Paypal/view/frontend/web/template/payment/paypal-express-bml.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
data-bind="attr: {'id': getCode()}, value: getCode(), checked: isChecked, click: selectPaymentMethod, visible: isRadioButtonVisible()" />
1313
<label data-bind="attr: {'for': getCode()}" class="label">
1414
<!-- PayPal Logo -->
15-
<img src="https://www.paypalobjects.com/webstatic/en_US/i/buttons/ppc-acceptance-small.png"
15+
<img src="https://www.paypalobjects.com/webstatic/en_US/i/buttons/ppc-acceptance-medium.png"
1616
data-bind="attr: {alt: $t('Acceptance Mark')}"
1717
class="payment-icon"/>
1818
<!-- PayPal Logo -->

0 commit comments

Comments
 (0)