WordPress.Arrays.ArrayDeclaration.SpaceAfterDoubleArrow

This commit is contained in:
Aristeides Stathopoulos 2016-08-27 05:36:32 +03:00
parent 14ec612760
commit 0b0f67ad28
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ class WC_Settings_Accounts extends WC_Settings_Page {
array( 'type' => 'sectionend', 'id' => 'account_page_options' ),
array( 'title' => '', 'type' => 'title', 'id' => 'account_registration_options' ),
array( 'title' => '', 'type' => 'title', 'id' => 'account_registration_options' ),
array(
'title' => __( 'Enable Registration', 'woocommerce' ),

View File

@ -67,5 +67,5 @@ $show_customer_details = is_user_logged_in() && $order->get_user_id() === get_cu
<?php do_action( 'woocommerce_order_details_after_order_table', $order ); ?>
<?php if ( $show_customer_details ) : ?>
<?php wc_get_template( 'order/order-details-customer.php', array( 'order' => $order ) ); ?>
<?php wc_get_template( 'order/order-details-customer.php', array( 'order' => $order ) ); ?>
<?php endif; ?>