Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Classes/Domain/Model/Order/AbstractAddress.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ abstract class AbstractAddress extends AbstractEntity

protected string $fax = '';

/**
* @var string don't remove, it's necessary for extbase database mapping
*/
protected string $additional = '';

public function toArray(): array
Expand Down
3 changes: 3 additions & 0 deletions Classes/Domain/Model/Order/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ class Item extends AbstractEntity

protected string $additionalData = '';

/**
* @var string don't remove, it's necessary for extbase database mapping
*/
protected string $additional = '';

protected string $currency = '€';
Expand Down
2 changes: 1 addition & 1 deletion Documentation/guides.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
interlink-shortcode="extcode/cart"
/>
<project title="Cart"
release="10.2.6"
release="10.2.7"
version="10.2"
copyright="2018 - 2024"
/>
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
'title' => 'Cart',
'description' => 'Shopping Cart(s) for TYPO3',
'category' => 'plugin',
'version' => '10.2.6',
'version' => '10.2.7',
'state' => 'stable',
'author' => 'Daniel Gohlke',
'author_email' => '[email protected]',
Expand Down