From 129260dc827d52ab4171f34c365e44709d198c6b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Tue, 3 Sep 2013 17:14:45 +0200 Subject: [PATCH] Fix typo in ACL export (phpBB) --- files/lib/system/exporter/PhpBB3xExporter.class.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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(); -- 2.20.1