- Issue created by @daniel korte
Using options_show_only_used
will skip all filled values for full result since #3132480 introduced an if/else condition where the else block is executed on line 142 when options_show_only_used_filtered
is not enabled:
else {
// In this case we need to skip all filled values for full result.
foreach ($query_param->keys() as $key) {
$query_param->remove($key);
}
}
Enable options_show_only_used
and disable options_show_only_used_filtered
.
Both the if/else code blocks need to be ignored in this case to restore the previous functionality.
Active
3.0
Code