Fixed boundary port number typo
This commit is contained in:
@@ -411,7 +411,7 @@ jQuery(function($){
|
|||||||
msg = 'Need value username';
|
msg = 'Need value username';
|
||||||
} else if (!hostname_tester.test(hostname)) {
|
} else if (!hostname_tester.test(hostname)) {
|
||||||
msg = 'Invalid hostname: ' + hostname;
|
msg = 'Invalid hostname: ' + hostname;
|
||||||
} else if (port <= 0 || port > 63335) {
|
} else if (port <= 0 || port > 65535) {
|
||||||
msg = 'Invalid port: ' + port;
|
msg = 'Invalid port: ' + port;
|
||||||
} else {
|
} else {
|
||||||
if (pk) {
|
if (pk) {
|
||||||
|
|||||||
Reference in New Issue
Block a user