fixed the indentation in templates/myaccount/my-orders.php

This commit is contained in:
claudiosmweb 2014-01-04 10:40:22 -02:00
parent e273026fff
commit 5cb3849e07
1 changed files with 5 additions and 5 deletions

View File

@ -14,11 +14,11 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $woocommerce;
$customer_orders = get_posts( apply_filters( 'woocommerce_my_account_my_orders_query', array(
'numberposts' => $order_count,
'meta_key' => '_customer_user',
'meta_value' => get_current_user_id(),
'post_type' => 'shop_order',
'post_status' => 'publish'
'numberposts' => $order_count,
'meta_key' => '_customer_user',
'meta_value' => get_current_user_id(),
'post_type' => 'shop_order',
'post_status' => 'publish'
) ) );
if ( $customer_orders ) : ?>