From: Alexander Ebert Date: Fri, 6 Feb 2015 18:48:44 +0000 (+0100) Subject: Fixed package names in list of excluded packages X-Git-Tag: 2.1.0_RC_1~6^2~6 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b651868b40efb61283a40d4f59bb7574aad7f927;p=GitHub%2FWoltLab%2FWCF.git Fixed package names in list of excluded packages --- diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationScheduler.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationScheduler.class.php index e910c7cae1..ea83e486ab 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationScheduler.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationScheduler.class.php @@ -354,7 +354,7 @@ class PackageInstallationScheduler { 'action' => $packageInstallations[$key]['action'], 'conflict' => 'newPackageExcludesExistingPackage', 'existingPackage' => $row['excludedPackage'], - 'existingPackageName' => $row['packageName'], + 'existingPackageName' => WCF::getLanguage()->get($row['packageName']), 'existingPackageVersion' => $row['packageVersion'] ); } @@ -399,7 +399,7 @@ class PackageInstallationScheduler { 'action' => $packageInstallation['action'], 'conflict' => 'existingPackageExcludesNewPackage', 'existingPackage' => $row['package'], - 'existingPackageName' => $row['packageName'], + 'existingPackageName' => WCF::getLanguage()->get($row['packageName']), 'existingPackageVersion' => $row['packageVersion'] ); }