Order date

This commit is contained in:
Mike Jolley 2011-12-17 19:30:52 +00:00
parent 909bea5d02
commit 3ed47d9371
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ function woocommmerce_dashboard_recent_orders() {
echo ' echo '
<li> <li>
<span class="order-status '.sanitize_title($this_order->status).'">'.ucwords($this_order->status).'</span> <a href="'.admin_url('post.php?post='.$order->ID).'&action=edit">'.date_i18n('l jS \of F Y h:i:s A', strtotime($this_order->order_date)).'</a><br /> <span class="order-status '.sanitize_title($this_order->status).'">'.ucwords($this_order->status).'</span> <a href="'.admin_url('post.php?post='.$order->ID).'&action=edit">'.get_the_time('l jS \of F Y h:i:s A', $order->ID).'</a><br />
<small>'.sizeof($this_order->items).' '._n('item', 'items', sizeof($this_order->items), 'woothemes').' <span class="order-cost">'.__('Total:', 'woothemes') . ' ' . woocommerce_price($this_order->order_total).'</span></small> <small>'.sizeof($this_order->items).' '._n('item', 'items', sizeof($this_order->items), 'woothemes').' <span class="order-cost">'.__('Total:', 'woothemes') . ' ' . woocommerce_price($this_order->order_total).'</span></small>
</li>'; </li>';