From: Alexander Ebert Date: Tue, 14 May 2013 23:25:52 +0000 (+0200) Subject: Fixed previous commit X-Git-Tag: 2.0.0_Beta_1~185 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=27673cf1a556af857785bda6830ef0745ea5c832;p=GitHub%2FWoltLab%2FWCF.git Fixed previous commit --- diff --git a/wcfsetup/install/files/acp/js/WCF.ACP.js b/wcfsetup/install/files/acp/js/WCF.ACP.js index 04f3d7cee0..48d92835ef 100644 --- a/wcfsetup/install/files/acp/js/WCF.ACP.js +++ b/wcfsetup/install/files/acp/js/WCF.ACP.js @@ -594,10 +594,10 @@ WCF.ACP.Package.Installation = Class.extend({ } if ($key) { - $additionalData[$key] = $inputElement.val(); + $additionalData[$name][$key] = $inputElement.val(); } else { - $additionalData[$key].push($inputElement.val()); + $additionalData[$name].push($inputElement.val()); } } else {