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> </select>
</td> </td>
<td class="padding10 first-collumn"> <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') }} {{ input('token', value=token, type='hidden') }}
</td> </td>
<td class="padding10 first-collumn"> <td class="padding10 first-collumn">

View File

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