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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fix `Validation` tab from `Order`
- Fix invalid relations declared
- Fix uninstall method
- Fix action to link an existing item

## [2.12.4] - 2025-12-02

Expand Down
2 changes: 1 addition & 1 deletion inc/link.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ public static function processMassiveActionsForOneItemtype(

// retrieve additional informations for each items
$ma->POST['add_items'] = [];
if (isset($ma->items[self::class])) {
if (isset($ma->getItems()[self::class])) {
$additional_data_ite = $DB->request([
'SELECT' => [
'glpi_plugin_order_orders_items.id',
Expand Down