From e34551c6b7c219ee6a24a302709cf2018fc254a2 Mon Sep 17 00:00:00 2001 From: Brandon Kraft Date: Fri, 17 Nov 2017 15:40:54 -0600 Subject: [PATCH] Correct nesting of args --- templates/emails/customer-invoice.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/templates/emails/customer-invoice.php b/templates/emails/customer-invoice.php index 89e6e29591d..5166b632347 100644 --- a/templates/emails/customer-invoice.php +++ b/templates/emails/customer-invoice.php @@ -33,15 +33,15 @@ do_action( 'woocommerce_email_header', $email_heading, $email ); ?> printf( wp_kses( /* translators: %1s item is the name of the site, %2s is a html link */ - __( 'An order has been created for you on %1$s. To pay for this order please use the following link: %2$s', 'woocommerce' ), - esc_html( get_bloginfo( 'name', 'display' ) ), - '' . esc_html__( 'Submit payment online.', 'woocommerce' ) . '' + __( 'An order has been created for you on %1$s. To pay for this order please use the following link: %2$s', 'woocommerce' ), + array( + 'a' => array( + 'href' => array(), + ), + ) ), - array( - 'a' => array( - 'href' => array(), - ), - ) + esc_html( get_bloginfo( 'name', 'display' ) ), + '' . esc_html__( 'Submit payment online.', 'woocommerce' ) . '' ); ?>