Changelog: https://roxy-wi.org/changelog#7.0.0
pull/364/head
Aidaho 2023-09-19 19:59:26 +03:00
parent f93bdc69bf
commit 191267a90a
2 changed files with 6 additions and 2 deletions

View File

@ -70,7 +70,7 @@
</select>
</td>
<td class="padding10 first-collumn">
{{ input('nettools_nslookup_server_to', name='server_to', title='Enter IP or Name') }}
{{ input('nettools_telnet_server_to', name='server_to', title='Enter IP or Name') }}
{{ input('token', value=token, type='hidden') }}
</td>
<td class="padding10 first-collumn">

View File

@ -1392,7 +1392,11 @@ function addGit(dialog_id) {
}
}
function updateSettings(param, val) {
val = val.replace(/\//g, "92");
try {
val = val.replace(/\//g, "92");
} catch (e) {
val = val;
}
toastr.clear();
$.ajax( {
url: "/app/admin/setting/" + param + "/" + val,