Merge pull request #8544 from vicky081/patch-4

Return the output directly
This commit is contained in:
Claudio Sanches 2015-07-09 11:31:41 -03:00
commit e9c555702f
1 changed files with 1 additions and 4 deletions

View File

@ -1963,10 +1963,7 @@ abstract class WC_Abstract_Order {
'show_image' => $show_image,
'image_size' => $image_size
) );
$return = apply_filters( 'woocommerce_email_order_items_table', ob_get_clean(), $this );
return $return;
return apply_filters( 'woocommerce_email_order_items_table', ob_get_clean(), $this );
}
/**