From 95cda2bf9afd8e1068d904999d6a32158e3d41a6 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Sat, 18 May 2013 18:39:24 +0200 Subject: [PATCH] Fixes error message text --- .../lib/system/package/PackageInstallationDispatcher.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); } } } -- 2.20.1