-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
getting this error:
PHP Warning: Undefined array key "shipping_tax" in /.../myAdmin/includes/classes/editOrders.php on line 324.
$this->shipping_tax_rate = is_numeric($_POST['shipping_tax']) ? $_POST['shipping_tax'] : 0; |
this code seems to resolve it:
$this->shipping_tax_rate = empty($_POST['shipping_tax']) ? 0 : (is_numeric($_POST['shipping_tax']) ? $_POST['shipping_tax'] : 0);
Metadata
Metadata
Assignees
Labels
No labels