From 5379e55e3141d0ef2a425e5be0080912f81a98a9 Mon Sep 17 00:00:00 2001 From: Slava Abakumov <282234+slaFFik@users.noreply.github.com> Date: Fri, 8 Nov 2024 12:00:16 +0100 Subject: [PATCH] Fix type in Stripe > settings.php Fix #9764 --- includes/gateways/stripe/includes/admin/settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/gateways/stripe/includes/admin/settings.php b/includes/gateways/stripe/includes/admin/settings.php index e66f935e46..f7f7b2720b 100644 --- a/includes/gateways/stripe/includes/admin/settings.php +++ b/includes/gateways/stripe/includes/admin/settings.php @@ -192,7 +192,7 @@ function edds_add_settings( $settings ) { $stripe_settings['stripe_use_existing_cards'] = array( 'id' => 'stripe_use_existing_cards', 'name' => __( 'Show Previously Used Cards', 'easy-digital-downloads' ), - 'desc' => __( 'Provides logged in customers with a list of previous used payment methods for faster checkout.', 'easy-digital-downloads' ), + 'desc' => __( 'Provides logged in customers with a list of previously used payment methods for faster checkout.', 'easy-digital-downloads' ), 'type' => 'checkbox', 'class' => 'payment-elements' === $elements_mode ? 'edd-hidden card-elements-feature' : 'card-elements-feature', );