From 54586115b7c81ea9039aff56b14f690bf5dc9b35 Mon Sep 17 00:00:00 2001 From: Justin Shreve Date: Tue, 9 Jun 2015 15:38:21 +0000 Subject: [PATCH] Add a line break after every download file link is outputed in the email order items template. --- templates/emails/email-order-items.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/emails/email-order-items.php b/templates/emails/email-order-items.php index 6353b61caf1..ce65203c211 100644 --- a/templates/emails/email-order-items.php +++ b/templates/emails/email-order-items.php @@ -56,7 +56,7 @@ foreach ( $items as $item_id => $item ) : $prefix = __( 'Download', 'woocommerce' ); } - echo '
' . $prefix . ': ' . esc_html( $file['name'] ) . ''; + echo '
' . $prefix . ': ' . esc_html( $file['name'] ) . '' . "\n"; } }