From: Alexander Ebert Date: Fri, 19 Aug 2011 13:39:32 +0000 (+0200) Subject: Fixed SQL error caused by d7281d4 X-Git-Tag: 2.0.0_Beta_1~1845 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3516483d8289c3b2fed99ab634f5eded7e724b3e;p=GitHub%2FWoltLab%2FWCF.git Fixed SQL error caused by d7281d4 --- diff --git a/wcfsetup/install/files/lib/system/WCFSetup.class.php b/wcfsetup/install/files/lib/system/WCFSetup.class.php index 2f5a6129ab..50cc72ec2e 100644 --- a/wcfsetup/install/files/lib/system/WCFSetup.class.php +++ b/wcfsetup/install/files/lib/system/WCFSetup.class.php @@ -1033,7 +1033,7 @@ class WCFSetup extends WCF { if (!empty($statementParameters)) { $sql = "INSERT INTO wcf".WCF_N."_package_installation_queue (processNo, userID, package, packageName, archive) - VALUES (?, ?, ?, ?)"; + VALUES (?, ?, ?, ?, ?)"; $statement = self::getDB()->prepareStatement($sql); foreach ($statementParameters as $parameter) {