Skip to content

Commit

Permalink
Remove # before order number to match 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejolley committed Oct 13, 2017
1 parent a2e580f commit 7b67d2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/emails/class-wc-email-customer-invoice.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function get_default_subject( $paid = false ) {
if ( $paid ) {
return __( 'Your {site_title} order from {order_date}', 'woocommerce' );
} else {
return __( 'Invoice for order #{order_number}', 'woocommerce' );
return __( 'Invoice for order {order_number}', 'woocommerce' );
}
}

Expand All @@ -65,7 +65,7 @@ public function get_default_heading( $paid = false ) {
if ( $paid ) {
return __( 'Your order details', 'woocommerce' );
} else {
return __( 'Invoice for order #{order_number}', 'woocommerce' );
return __( 'Invoice for order {order_number}', 'woocommerce' );
}
}

Expand Down

0 comments on commit 7b67d2d

Please sign in to comment.