Skip to content

Commit

Permalink
Fixed mistake on array #718
Browse files Browse the repository at this point in the history
  • Loading branch information
Al Brookbanks committed Jan 21, 2016
1 parent 4f1a397 commit 0006fab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/cart.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ public function get() {
require_once $sbc_path;
$line_shipping = new Per_Category_Line($ship_by_cat, $this->basket);
} else {
$ship_by_cat = array('status', false);
$ship_by_cat = array('status' => false);
}

$tax_on = ($GLOBALS['config']->get('config', 'basket_tax_by_delivery')) ? 'delivery_address' : 'billing_address';
Expand Down

0 comments on commit 0006fab

Please sign in to comment.