Prevent notices on activation Closes #5216

This commit is contained in:
Mike Jolley 2014-04-07 15:57:52 +01:00
parent 8b59eb3bdb
commit 5850b9329b
1 changed files with 5 additions and 3 deletions

View File

@ -312,8 +312,9 @@ function wc_processing_order_count() {
if ( false === ( $order_count = get_transient( 'woocommerce_processing_order_count' ) ) ) {
$order_statuses = get_terms( 'shop_order_status' );
$order_count = false;
if ( is_array( $order_statuses ) ) {
foreach ( $order_statuses as $status ) {
if( $status->slug === 'processing' ) {
if ( $status->slug === 'processing' ) {
$order_count += $status->count;
break;
}
@ -321,6 +322,7 @@ function wc_processing_order_count() {
$order_count = apply_filters( 'woocommerce_admin_menu_count', intval( $order_count ) );
set_transient( 'woocommerce_processing_order_count', $order_count, YEAR_IN_SECONDS );
}
}
return $order_count;
}