From 3cba00efeeb1622f88bfd3409620108f1d5a444f Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Wed, 11 Sep 2024 15:27:08 +0200 Subject: [PATCH] Remove debug code --- .../lib/system/view/grid/DatabaseObjectListGridView.class.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/view/grid/DatabaseObjectListGridView.class.php b/wcfsetup/install/files/lib/system/view/grid/DatabaseObjectListGridView.class.php index 0c3e536506..5f44e981eb 100644 --- a/wcfsetup/install/files/lib/system/view/grid/DatabaseObjectListGridView.class.php +++ b/wcfsetup/install/files/lib/system/view/grid/DatabaseObjectListGridView.class.php @@ -49,7 +49,6 @@ abstract class DatabaseObjectListGridView extends AbstractGridView $this->objectList = new $this->objectListClassName; $this->objectList->sqlLimit = $this->getRowsPerPage(); $this->objectList->sqlOffset = ($this->getPageNo() - 1) * $this->getRowsPerPage(); - //wcfDebug($this->objectList->sqlLimit, $this->objectList->sqlOffset); if ($this->getSortField()) { $this->objectList->sqlOrderBy = $this->getSortField() . ' ' . $this->getSortOrder(); } -- 2.20.1