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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [UNRELEASE]

- Fix incompatibility of `multiple` dropdowns with `massiveaction`

## [1.21.22] - 2025-05-28

### Fixed
Expand Down
5 changes: 5 additions & 0 deletions inc/container.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1833,6 +1833,11 @@ private static function populateData($c_id, CommonDBTM $item)
) { //multi dropdown is empty or has been emptied
$data[$multiple_key] = [];
$has_fields = true;
} elseif (isset($_REQUEST['massiveaction'])) { // called from massiveaction
if (isset($_POST[$multiple_key])) {
$data[$multiple_key] = $_POST[$multiple_key];
$has_fields = true;
}
}
}

Expand Down