From 24fb0a10f96e0ffba9b877c662ae2bf9dc79256b Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 8 Aug 2023 16:55:12 +0200 Subject: [PATCH] PHP 8.2 rerun of /sales/includes/cart_class.inc. Fixed back to deliver_to. --- sales/includes/cart_class.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sales/includes/cart_class.inc b/sales/includes/cart_class.inc index adfe941a..e867cea0 100644 --- a/sales/includes/cart_class.inc +++ b/sales/includes/cart_class.inc @@ -45,7 +45,7 @@ class Cart var $Branch; var $email; - var $delivery_to; + var $deliver_to; var $delivery_address; var $phone; @@ -225,7 +225,7 @@ class Cart $sodata = get_sales_order_header($this->order_no, ST_SALESORDER); $this->cust_ref = $sodata["customer_ref"]; // currently currency is hard linked to debtor account - $this->delivery_to = $sodata["deliver_to"]; + $this->deliver_to = $sodata["deliver_to"]; $this->delivery_address = $sodata["delivery_address"]; // child transaction reedition - update with parent info unless it is freehand if (!$this->is_prepaid() && !$prepare_child) // this is read for view/reedition @@ -389,7 +389,7 @@ class Cart function set_delivery($shipper, $destination, $address, $freight_cost=null) { $this->ship_via = $shipper; - $this->delivery_to = $destination; + $this->deliver_to = $destination; $this->delivery_address = $address; if (isset($freight_cost)) $this->freight_cost = $freight_cost; -- 2.30.2