From: Tim Düsterhus Date: Tue, 3 Sep 2013 15:14:45 +0000 (+0200) Subject: Fix typo in ACL export (phpBB) X-Git-Tag: 2.0.0_Beta_4~1^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=129260dc827d52ab4171f34c365e44709d198c6b;p=GitHub%2FWoltLab%2Fcom.woltlab.wcf.exporter.git Fix typo in ACL export (phpBB) --- diff --git a/files/lib/system/exporter/PhpBB3xExporter.class.php b/files/lib/system/exporter/PhpBB3xExporter.class.php index 93dd833..7947551 100644 --- a/files/lib/system/exporter/PhpBB3xExporter.class.php +++ b/files/lib/system/exporter/PhpBB3xExporter.class.php @@ -984,10 +984,9 @@ class PhpBB3xExporter extends AbstractExporter { * Exports ACLs. */ public function exportACLs($offset, $limit) { - // TODO: ACLs are untested $sql = "SELECT * FROM ".$this->databasePrefix."acl_options - WHER is_local = ?"; + WHERE is_local = ?"; $statement = $this->database->prepareStatement($sql); $statement->execute(array(1)); $options = array();