Skip to content

Commit

Permalink
Merge pull request #312 from jorix/issue_309-undefined-order_item_id
Browse files Browse the repository at this point in the history
Fix issue #309
  • Loading branch information
jmueller17 authored Mar 1, 2024
2 parents c5aa9c6 + e021dc8 commit c695e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/lib/shop_cart_manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function commit_string()
{
return '('
. $this->_cart_id . ','
. $this->_order_item_id . ','
. ( $this->_order_item_id != 'undefined' ? $this->_order_item_id : 'null' ) . ','
. $this->_product_id . ','
. $this->_quantity . ','
. $this->_iva_percent . ','
Expand Down

0 comments on commit c695e58

Please sign in to comment.