Skip to content

Commit 6ea22c9

Browse files
committed
Import Magento Release 1.7.0.2
1 parent 44407a7 commit 6ea22c9

File tree

7 files changed

+724
-13
lines changed

7 files changed

+724
-13
lines changed

RELEASE_NOTES.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
==== 1.7.0.2 ====
2+
3+
=== Fixes ===
4+
Fixed: Security vulnerability in Zend_XmlRpc - http://framework.zend.com/security/advisory/ZF2012-01
5+
Fixed: PayPal Standard does not display on frontend during checkout with some merchant countries
6+
7+
8+
19
==== 1.7.0.1 ====
210

311
=== Major Highlights ===

app/Mage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public static function getVersionInfo()
170170
'major' => '1',
171171
'minor' => '7',
172172
'revision' => '0',
173-
'patch' => '1',
173+
'patch' => '2',
174174
'stability' => '',
175175
'number' => '',
176176
);

app/code/core/Mage/Paypal/Model/Config.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -516,37 +516,44 @@ public function getCountryMethods($countryCode = null)
516516
self::METHOD_WPP_PE_EXPRESS,
517517
),
518518
'AU' => array(
519+
self::METHOD_WPS,
519520
self::METHOD_PAYFLOWPRO,
520521
self::METHOD_HOSTEDPRO,
521522
self::METHOD_WPP_EXPRESS,
522523
self::METHOD_BILLING_AGREEMENT,
523524
),
524525
'NZ' => array(
526+
self::METHOD_WPS,
525527
self::METHOD_PAYFLOWPRO,
526528
self::METHOD_WPP_EXPRESS,
527529
self::METHOD_BILLING_AGREEMENT,
528530
),
529531
'JP' => array(
532+
self::METHOD_WPS,
530533
self::METHOD_HOSTEDPRO,
531534
self::METHOD_WPP_EXPRESS,
532535
self::METHOD_BILLING_AGREEMENT,
533536
),
534537
'FR' => array(
538+
self::METHOD_WPS,
535539
self::METHOD_HOSTEDPRO,
536540
self::METHOD_WPP_EXPRESS,
537541
self::METHOD_BILLING_AGREEMENT,
538542
),
539543
'IT' => array(
544+
self::METHOD_WPS,
540545
self::METHOD_HOSTEDPRO,
541546
self::METHOD_WPP_EXPRESS,
542547
self::METHOD_BILLING_AGREEMENT,
543548
),
544549
'ES' => array(
550+
self::METHOD_WPS,
545551
self::METHOD_HOSTEDPRO,
546552
self::METHOD_WPP_EXPRESS,
547553
self::METHOD_BILLING_AGREEMENT,
548554
),
549555
'HK' => array(
556+
self::METHOD_WPS,
550557
self::METHOD_HOSTEDPRO,
551558
self::METHOD_WPP_EXPRESS,
552559
self::METHOD_BILLING_AGREEMENT,

0 commit comments

Comments
 (0)