From 259bce32344eb2f45b93baa555ebae20b0d66d64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Engstr=C3=B6m?= <70755754+P1-Roger@users.noreply.github.com> Date: Thu, 11 Sep 2025 16:09:11 +0200 Subject: [PATCH] Fixed parameter "_" preset for limit and offset parameters for portals --- src/Supporting/FileMakerLayout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Supporting/FileMakerLayout.php b/src/Supporting/FileMakerLayout.php index 87ca731..075b69e 100644 --- a/src/Supporting/FileMakerLayout.php +++ b/src/Supporting/FileMakerLayout.php @@ -75,7 +75,7 @@ private function buildPortalParameters(array|null $param, string $method = "GET"): array { $key = $shortKey ? "portal" : "portalData"; - $prefix = $method === "GET" ? "" : "_"; + $prefix = $method === "GET" ? "_" : ""; $request = []; if (array_values($param) === $param) { $request[$key] = $param;