From c8dcecf3f3b226cd8ac101cd401b91ce7374c301 Mon Sep 17 00:00:00 2001 From: Daniel Neis Araujo Date: Tue, 9 Oct 2018 18:19:14 -0300 Subject: [PATCH] MDL-63603 enrol: Add Indian Rupee to paypal enrolment currencies --- enrol/paypal/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enrol/paypal/lib.php b/enrol/paypal/lib.php index 21e77e94829..64e2cb946d6 100644 --- a/enrol/paypal/lib.php +++ b/enrol/paypal/lib.php @@ -37,7 +37,7 @@ class enrol_paypal_plugin extends enrol_plugin { // See https://www.paypal.com/cgi-bin/webscr?cmd=p/sell/mc/mc_intro-outside, // 3-character ISO-4217: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_currency_codes $codes = array( - 'AUD', 'BRL', 'CAD', 'CHF', 'CZK', 'DKK', 'EUR', 'GBP', 'HKD', 'HUF', 'ILS', 'JPY', + 'AUD', 'BRL', 'CAD', 'CHF', 'CZK', 'DKK', 'EUR', 'GBP', 'HKD', 'HUF', 'ILS', 'INR', 'JPY', 'MXN', 'MYR', 'NOK', 'NZD', 'PHP', 'PLN', 'RUB', 'SEK', 'SGD', 'THB', 'TRY', 'TWD', 'USD'); $currencies = array(); foreach ($codes as $c) {