Merge pull request #5934 from barrykooij/bugfix/fix-order-metabox-notices

Fix notices, added isset() checks around $legacy_order
This commit is contained in:
Mike Jolley 2014-07-30 12:16:28 +01:00
commit e7e9de4cbd
3 changed files with 3 additions and 3 deletions

View File

@ -198,7 +198,7 @@ if ( ! defined( 'ABSPATH' ) ) {
</td>
<?php
if ( ! $legacy_order && 'yes' == get_option( 'woocommerce_calc_taxes' ) ) :
if ( isset( $legacy_order ) && ! $legacy_order && 'yes' == get_option( 'woocommerce_calc_taxes' ) ) :
$line_tax_data = isset( $item['line_tax_data'] ) ? $item['line_tax_data'] : '';
$tax_data = maybe_unserialize( $line_tax_data );

View File

@ -45,7 +45,7 @@ if ( 'yes' == get_option( 'woocommerce_calc_taxes' ) ) {
<th class="line_cost"><?php _e( 'Total', 'woocommerce' ); ?></th>
<?php
if ( ! $legacy_order && 'yes' == get_option( 'woocommerce_calc_taxes' ) ) :
if ( isset( $legacy_order ) && ! $legacy_order && 'yes' == get_option( 'woocommerce_calc_taxes' ) ) :
foreach ( $order_taxes as $tax_id => $tax_item ) :
$tax_class = wc_get_tax_class_by_tax_id( $tax_item['rate_id'] );
$tax_class_name = isset( $classes_options[ $tax_class ] ) ? $classes_options[ $tax_class ] : __( 'Tax', 'woocommerce' );

View File

@ -67,7 +67,7 @@ if ( ! defined( 'ABSPATH' ) ) {
</td>
<?php
if ( ! $legacy_order && 'yes' == get_option( 'woocommerce_calc_taxes' ) ) :
if ( isset( $legacy_order ) && ! $legacy_order && 'yes' == get_option( 'woocommerce_calc_taxes' ) ) :
$shipping_taxes = isset( $item['taxes'] ) ? $item['taxes'] : '';
$tax_data = maybe_unserialize( $shipping_taxes );