From bff95262cb17e6bdadd027a3e5223f2d2947b331 Mon Sep 17 00:00:00 2001 From: Claudio Sanches Date: Wed, 18 Jan 2017 16:20:48 -0200 Subject: [PATCH] Changelog for 2.6.13 --- CHANGELOG.txt | 6 ++++++ includes/class-wc-order-item.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 37685870b37..f4d427d79b4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,5 +1,11 @@ == Changelog == += 2.6.13 - 2017-01-18 = +* Fix - Demo store banner styling in 2017. +* Fix - Removed default instructions from COD, BACS and Cheque gateways so displayed messages can be unset. +* Fix - Made variation options update on first load. +* Localisation - Added Romanian locale to the installer. + = 2.6.12 - 2017-01-12 = * Fix - Make images shown up on pageload when using ajax variations. * Fix - Allow variations options to be deselected in IE11. diff --git a/includes/class-wc-order-item.php b/includes/class-wc-order-item.php index 2fe7e5c0d4d..16bfd4834eb 100644 --- a/includes/class-wc-order-item.php +++ b/includes/class-wc-order-item.php @@ -207,7 +207,7 @@ class WC_Order_Item extends WC_Data implements ArrayAccess { 'key' => $meta->key, 'value' => $meta->value, 'display_key' => apply_filters( 'woocommerce_order_item_display_meta_key', $display_key ), - 'display_value' => apply_filters( 'woocommerce_order_item_display_meta_value', wpautop( make_clickable( $display_value ) ) ), + 'display_value' => wpautop( make_clickable( apply_filters( 'woocommerce_order_item_display_meta_value', $display_value ) ) ), ); }