From 53771ca8f3142aa6632d8b6a064479396b152e63 Mon Sep 17 00:00:00 2001 From: Wolfgang Date: Sat, 2 Nov 2024 15:56:50 +0100 Subject: [PATCH] fix: add missing defines for the disable refresh setting Signed-off-by: Wolfgang --- lib/Controller/PageController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php index f4940858e..8462d3ba5 100644 --- a/lib/Controller/PageController.php +++ b/lib/Controller/PageController.php @@ -156,6 +156,7 @@ public function settings(): array * @param bool $preventReadOnScroll * @param bool $oldestFirst * @param bool $compactExpand + * @param bool $disableRefresh */ #[NoAdminRequired] public function updateSettings( @@ -163,7 +164,8 @@ public function updateSettings( bool $compact, bool $preventReadOnScroll, bool $oldestFirst, - bool $compactExpand + bool $compactExpand, + bool $disableRefresh ): void { $settings = [ 'showAll' => $showAll,