From: Alexander Ebert Date: Fri, 24 Feb 2012 15:33:56 +0000 (+0100) Subject: Fixed typo X-Git-Tag: 2.0.0_Beta_1~1309^2~3 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f5b8b8efaeb6bad09d81630783d69d32ea489439;p=GitHub%2FWoltLab%2FWCF.git Fixed typo --- diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationNodeBuilder.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationNodeBuilder.class.php index 8f641d0cb3..5592cfedd6 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationNodeBuilder.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationNodeBuilder.class.php @@ -423,7 +423,7 @@ class PackageInstallationNodeBuilder { if (!isset($package['file'])) { // requirements will be checked once package is about to be installed $this->requirements[$packageName] = array( - 'minVersion' => (isset($package['minversion'])) ?: '', + 'minVersion' => (isset($package['minversion'])) ? $package['minversion'] : '', 'packageID' => $package['packageID'] );