Merge pull request #12374 from MrPetovan/bug/admin-logs-view

Fix wrong condition when redirecting to filtered log view in admin/logs
This commit is contained in:
Philipp
2022-12-09 22:36:43 +01:00
committed by GitHub

View File

@@ -6,7 +6,7 @@ $(function(){
var value = this.dataset.filterValue;
var re = RegExp(filter+"=[a-z]*");
var newhref = location.href;
if (!location.href.indexOf("?") < 0) {
if (location.href.indexOf("?") < 0) {
newhref = location.href + "?" + filter + "=" + value;
} else if (location.href.match(re)) {
newhref = location.href.replace(RegExp(filter+"=[a-z]*"), filter+"="+value);