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 @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Fixed

- Fix the name of dropdown fields in logs when updating an item
- Fix plugin configuration deletion during uninstallation
- Fix nested array stored in DB for readonly dropdown
- Fix migration abort when a GenericObject container name produces a table name exceeding MySQL's 64-character limit after conversion to GlpiCustomAsset.
Expand Down
2 changes: 1 addition & 1 deletion inc/container.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1594,7 +1594,7 @@ public static function constructHistory(
//for all change find searchoption
foreach ($updates as $key => $changes) {
foreach ($searchoptions as $id_search_option => $searchoption) {
if ($searchoption['field'] == $key) {
if ($searchoption['field'] == $key || $searchoption['linkfield'] == $key) {
$changes[0] = $id_search_option;

if ($searchoption['datatype'] === 'dropdown') {
Expand Down