From 4e82ea8452a5d88bb5ace944b4cd5bf192ac995e Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Tue, 7 May 2013 11:25:17 +0200 Subject: [PATCH] Corrects unique application abbreviation check --- .../install/files/lib/system/package/PackageArchive.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/package/PackageArchive.class.php b/wcfsetup/install/files/lib/system/package/PackageArchive.class.php index c1ea46d3d5..475a1ac2fb 100644 --- a/wcfsetup/install/files/lib/system/package/PackageArchive.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageArchive.class.php @@ -454,7 +454,7 @@ class PackageArchive { $statement = WCF::getDB()->prepareStatement($sql); $statement->execute(array( 1, - '%'.Package::getAbbreviation($this->packageInfo['name']) + '%.'.Package::getAbbreviation($this->packageInfo['name']) )); return $statement->fetchColumn(); -- 2.20.1