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
commit 04d997548c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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);