--- umc/js/appcenter/AppCenterPage.js (Revision 37849) +++ umc/js/appcenter/AppCenterPage.js (Arbeitskopie) @@ -589,7 +589,7 @@ if (allows_using && can_install && master_packages && master_packages.length) { // prepare a command with max 50 characters length per line var MAXCHARS = 50; - var cmdLine = lang.replace('univention-add-app {id} ', values); + var cmdLine = lang.replace('univention-add-app {component_id} ', values); var cmdLines = []; array.forEach(master_packages, function(icmd) { if (icmd.length + cmdLine.length > MAXCHARS) { --- umc/python/appcenter/app_center.py (Revision 37849) +++ umc/python/appcenter/app_center.py (Arbeitskopie) @@ -354,6 +354,7 @@ def to_dict(self, package_manager): ucr.load() res = copy.copy(self._options) + res['component_id'] = self.component_id res['cannot_install_reason'], res['cannot_install_reason_detail'] = self.cannot_install_reason(package_manager) cannot_install_reason = res['cannot_install_reason']