diff --git a/includes/class-wc-form-handler.php b/includes/class-wc-form-handler.php index e2ba1b91378..4619626e886 100644 --- a/includes/class-wc-form-handler.php +++ b/includes/class-wc-form-handler.php @@ -494,7 +494,7 @@ class WC_Form_Handler { // Don't show undo link if removed item is out of stock. if ( $product->is_in_stock() && $product->has_enough_stock( $cart_item['quantity'] ) ) { $removed_notice = sprintf( __( '%s removed.', 'woocommerce' ), $item_removed_title ); - $removed_notice .= ' ' . __( 'Undo?', 'woocommerce' ) . ''; + $removed_notice .= ' ' . __( 'Undo?', 'woocommerce' ) . ''; } else { $removed_notice = sprintf( __( '%s removed.', 'woocommerce' ), $item_removed_title ); }