From 9632077c7ee247b994df8ad885b70439d8c9e0e4 Mon Sep 17 00:00:00 2001 From: Lee Hopkins Date: Fri, 14 Aug 2015 09:57:35 -0700 Subject: [PATCH] Wrap product name in correct double quotes in wc_format_list_of_items() --- includes/wc-cart-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/wc-cart-functions.php b/includes/wc-cart-functions.php index 97c8face6a7..e217bd30992 100644 --- a/includes/wc-cart-functions.php +++ b/includes/wc-cart-functions.php @@ -97,7 +97,7 @@ function wc_format_list_of_items( $items ) { $item_string = ''; foreach ( $items as $key => $item ) { - $item_string .= sprintf( _x( '“%s“', 'Item name in quotes', 'woocommerce' ), $item ); + $item_string .= sprintf( _x( '“%s”', 'Item name in quotes', 'woocommerce' ), $item ); if ( $key + 2 === sizeof( $items ) ) { $item_string .= ' ' . __( 'and', 'woocommerce' ) . ' ';