Replaced missing end parenthesis

This commit is contained in:
Nikki DelRosso 2015-05-14 14:37:17 -07:00
parent 940c2369b0
commit 536d3096f2
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ class WC_Cart {
}
// Queue re-calc if subtotal is not set
if ( ( ! $this->subtotal && ! $this->is_empty() || $update_cart_session ) {
if ( ( ! $this->subtotal && ! $this->is_empty() ) || $update_cart_session ) {
$this->calculate_totals();
}
}