diff --git a/admin/woocommerce-admin-dashboard.php b/admin/woocommerce-admin-dashboard.php index 7761bf6fe4e..75563c0ea1b 100644 --- a/admin/woocommerce-admin-dashboard.php +++ b/admin/woocommerce-admin-dashboard.php @@ -127,7 +127,7 @@ function woocommmerce_dashboard_recent_orders() { echo '
  • - '.ucwords($this_order->status).' '.date_i18n('l jS \of F Y h:i:s A', strtotime($this_order->order_date)).'
    + '.ucwords($this_order->status).' '.get_the_time('l jS \of F Y h:i:s A', $order->ID).'
    '.sizeof($this_order->items).' '._n('item', 'items', sizeof($this_order->items), 'woothemes').' '.__('Total:', 'woothemes') . ' ' . woocommerce_price($this_order->order_total).'
  • ';