Skip to content

Commit 259bce3

Browse files
committed
Fixed parameter "_" preset for limit and offset parameters for portals
1 parent 0150b55 commit 259bce3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Supporting/FileMakerLayout.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private function buildPortalParameters(array|null $param,
7575
string $method = "GET"): array
7676
{
7777
$key = $shortKey ? "portal" : "portalData";
78-
$prefix = $method === "GET" ? "" : "_";
78+
$prefix = $method === "GET" ? "_" : "";
7979
$request = [];
8080
if (array_values($param) === $param) {
8181
$request[$key] = $param;

0 commit comments

Comments
 (0)