From 4ae7d3484f1e171229828656fc4a890f4e503e2c Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 14 Apr 2022 12:18:23 +0800 Subject: [PATCH] Update admin.js --- public/static/admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/static/admin.js b/public/static/admin.js index 85672b8a3..5e5a92c80 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -867,7 +867,7 @@ $(function () { var url = $(this).attr('action').replace(/&?page=\d+/g, ''); if ((this.method || 'get').toLowerCase() === 'get') { var split = url.indexOf('?') > -1 ? '&' : '?', stype = location.href.indexOf('spm=') > -1 ? '#' : ''; - return location.href = stype + $.menu.parseUri(url + split + $(this).serialize()); + return location.href = stype + $.menu.parseUri(url + split + $(this).serialize().replace(/\+/g, ' ')); } return $.form.load(url, this, 'post'); });