We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33183be commit 3a78be8Copy full SHA for 3a78be8
CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
8
## [UNRELAESE]
9
10
+- Fix container update from `API`
11
+
12
## [1.21.18] - 2024-01-16
13
14
- Fix `PluginFieldsContainerDisplayCondition` display when value is no more available.
inc/container.class.php
@@ -1666,6 +1666,8 @@ public static function preItem(CommonDBTM $item)
1666
//find container (if not exist, do nothing)
1667
if (isset($_REQUEST['c_id'])) {
1668
$c_id = $_REQUEST['c_id'];
1669
+ } elseif (isset($item->input['c_id'])) {
1670
+ $c_id = $item->input['c_id'];
1671
} else {
1672
$type = 'dom';
1673
if (isset($_REQUEST['_plugin_fields_type'])) {
0 commit comments