Merge pull request #16951 from atm-adrien/FIX/bookmarks_on_searchList_develop

FIX : Bookmarks on list filtered by multiselect field
This commit is contained in:
Laurent Destailleur 2021-03-25 00:49:05 +01:00 committed by GitHub
commit f9796bd4f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,7 +53,7 @@ function printDropdownBookmarksList()
if (is_array($_POST)) {
foreach ($_POST as $key => $val) {
if (preg_match('/^search_/', $key) && $val != '') {
$tmpurl .= ($tmpurl ? '&' : '').$key.'='.$val;
$tmpurl .= ($tmpurl ? '&' : '').http_build_query(array($key => $val));
}
}
}