From 58836d6654bf500bfeaac1ea819fee9e41b19019 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Mon, 24 Oct 2022 17:17:00 +0200 Subject: [PATCH] Remove the query LIMIT and OFFSET from the attachment export --- files/lib/system/exporter/IPB3xExporter.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/lib/system/exporter/IPB3xExporter.class.php b/files/lib/system/exporter/IPB3xExporter.class.php index a531c35..f6c81aa 100644 --- a/files/lib/system/exporter/IPB3xExporter.class.php +++ b/files/lib/system/exporter/IPB3xExporter.class.php @@ -1193,7 +1193,7 @@ class IPB3xExporter extends AbstractExporter WHERE attach_rel_module = ? AND attach_rel_id > ? AND attach_id BETWEEN ? AND ?"; - $statement = $this->database->prepareStatement($sql, $limit, $offset); + $statement = $this->database->prepareStatement($sql); $statement->execute([ $type, 0, -- 2.20.1