Fix typo in ACL export (phpBB)
authorTim Düsterhus <timwolla@bastelstu.be>
Tue, 3 Sep 2013 15:14:45 +0000 (17:14 +0200)
committerTim Düsterhus <timwolla@bastelstu.be>
Tue, 3 Sep 2013 15:14:45 +0000 (17:14 +0200)
files/lib/system/exporter/PhpBB3xExporter.class.php

index 93dd833e304ef9a7ad7f528bf8a9df3f80198750..7947551b5110b5f3ea1d37ae74211f382f3e6aca 100644 (file)
@@ -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();