Check has_file when sending order emails for downloadables

Fixes #5296
This commit is contained in:
Mike Jolley 2014-04-24 16:00:01 +01:00
parent afafc066eb
commit 005c24a7c9
1 changed files with 1 additions and 1 deletions

View File

@ -1068,7 +1068,7 @@ class WC_Order {
$_product = $this->get_product_from_item( $item );
if ( $_product && $_product->exists() && $_product->is_downloadable() ) {
if ( $_product && $_product->exists() && $_product->is_downloadable() && $_product->has_file() ) {
$has_downloadable_item = true;
}