diff --git a/CHANGELOG.md b/CHANGELOG.md index ec2f2968..5e25d805 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Fix injection loading bar crash +- Fix missing `Group` field in mappable fields for `Printer` injection ## [2.15.5] - 2026-04-30 diff --git a/inc/printerinjection.class.php b/inc/printerinjection.class.php index 226329d0..731a26a5 100644 --- a/inc/printerinjection.class.php +++ b/inc/printerinjection.class.php @@ -70,6 +70,9 @@ public function getOptions($primary_type = '') //Specific to location $tab[3]['linkfield'] = 'locations_id'; + //Specific to groups (simple group, not technical) + $tab[71]['linkfield'] = 'groups_id_normal'; + //Remove some options because some fields cannot be imported $blacklist = PluginDatainjectionCommonInjectionLib::getBlacklistedOptions(get_parent_class($this)); $notimportable = [91, 92, 93];