From d43acd0ed1d9570a2b25c05d62e35422314442a2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Tue, 26 Nov 2013 19:42:20 +0100 Subject: [PATCH] Fix missing limit in VB3or4xExporter::exportACLs --- files/lib/system/exporter/VB3or4xExporter.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/lib/system/exporter/VB3or4xExporter.class.php b/files/lib/system/exporter/VB3or4xExporter.class.php index 57ce412..b3e9b1d 100644 --- a/files/lib/system/exporter/VB3or4xExporter.class.php +++ b/files/lib/system/exporter/VB3or4xExporter.class.php @@ -1210,7 +1210,7 @@ class VB3or4xExporter extends AbstractExporter { $sql = "SELECT * FROM ".$this->databasePrefix."forumpermission ORDER BY forumpermissionid ASC"; - $statement = $this->database->prepareStatement($sql); + $statement = $this->database->prepareStatement($sql, $limit, $offset); $statement->execute(); while ($row = $statement->fetchArray()) { -- 2.20.1