We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12b6d80 commit 5128d0eCopy full SHA for 5128d0e
2 files changed
CHANGELOG.md
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
10
### Fixed
11
12
+- Fix foreign key constraint in SQL query.
13
- Fix `Undefined array key "glpiname"` during database inventory task.
14
15
## [1.0.3] - 2025-07-10
inc/task.class.php
@@ -64,7 +64,7 @@ public static function inventoryGetParams(array $params)
64
],
65
'WHERE' => [
66
$credential_type_table . '.id' => PluginDatabaseinventoryCredentialType::getModuleKeyByName($content->use),
67
- $databaseparam_credential_table . '.plugin_databaseinventory_credentials_id' => $content->params_id,
+ $databaseparam_credential_table . '.plugin_databaseinventory_databaseparams_id' => $content->params_id,
68
69
];
70
0 commit comments