Skip to content

Commit 324be33

Browse files
committed
Tracking: change for method from GET to POST to avoid error with URL too long - refs BT#23002
1 parent aafc538 commit 324be33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main/mySpace/session_filter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
$certificateList = [];
3939
$urlParam = '';
40-
$form = new FormValidator('search_user', 'GET', api_get_self());
40+
$form = new FormValidator('search_user', 'POST', api_get_self());
4141
$innerJoinSessionRelUser = '';
4242
$whereCondictionDRH = '';
4343
$whereCondictionMultiUrl = '';
@@ -123,7 +123,7 @@
123123
} elseif (isset($_GET['export'])) {
124124
// Case 2: CSV export icon was clicked.
125125
// Use raw GET parameters as the form values so filters are preserved.
126-
$values = $_GET;
126+
$values = $_POST;
127127
$exportToCsv = true;
128128
}
129129

0 commit comments

Comments
 (0)