From 4617d920dbef66bb13328dd7747fa4cc206b51a1 Mon Sep 17 00:00:00 2001 From: "Yushkin, Dmytro" <dyushkin@ebay.com> Date: Thu, 22 Oct 2015 16:10:18 +0300 Subject: [PATCH] MAGETWO-44452: Unable to select country while adding new credit card for Braintree --- .../Braintree/view/frontend/templates/creditcard/edit.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Braintree/view/frontend/templates/creditcard/edit.phtml b/app/code/Magento/Braintree/view/frontend/templates/creditcard/edit.phtml index 6fcac2eae9c..05e55e01a50 100644 --- a/app/code/Magento/Braintree/view/frontend/templates/creditcard/edit.phtml +++ b/app/code/Magento/Braintree/view/frontend/templates/creditcard/edit.phtml @@ -328,7 +328,7 @@ $serializedFormData = $this->helper('Magento\Framework\Json\Helper\Data')->jsonE </label> <div class="control"> - <?php echo $block->escapeHtml($block->countrySelect('credit_card[billing_address][country_code_alpha2]', 'billing_address_country', $default)); ?> + <?php /* @noEscape */ echo $block->countrySelect('credit_card[billing_address][country_code_alpha2]', 'billing_address_country', $default); ?> </div> </div> </fieldset> -- GitLab