1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 23:31:13 -05:00

improve ban management display and additional translations

This commit is contained in:
RaidMax
2022-07-09 16:32:23 -05:00
parent c9b33d3097
commit 3b74953c01
5 changed files with 35 additions and 21 deletions

View File

@ -26,7 +26,7 @@ function getUrlParameter(sParam) {
sParameterName = sURLVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : decodeURIComponent(sParameterName[1]);
return sParameterName[1] === undefined ? true : decodeURIComponent(unescape(sParameterName[1]));
}
}
return false;