From: Matthias Schmidt Date: Sat, 18 May 2013 16:39:24 +0000 (+0200) Subject: Fixes error message text X-Git-Tag: 2.0.0_Beta_1~158^2~2^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=95cda2bf9afd8e1068d904999d6a32158e3d41a6;p=GitHub%2FWoltLab%2FWCF.git Fixes error message text --- diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php index 261cf9c3d7..4bcadbeb74 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php @@ -256,7 +256,7 @@ class PackageInstallationDispatcher { // check version requirements if ($requirementData['minVersion']) { if (Package::compareVersion($row['packageVersion'], $requirementData['minVersion']) < 0) { - throw new SystemException("Package '".$nodeData['packageName']."' requires the package '".$row['packageName']."' in version '".$requirementData['minVersion']."', but version '".$row['packageVersion']."'"); + throw new SystemException("Package '".$nodeData['packageName']."' requires package '".$row['packageName']."' in version '".$requirementData['minVersion']."', but only version '".$row['packageVersion']."' is installed"); } } }