Commit d3da7ec5 by Sheng

Fixed boundary port number typo

parent 5d6f92e5
......@@ -411,7 +411,7 @@ jQuery(function($){
msg = 'Need value username';
} else if (!hostname_tester.test(hostname)) {
msg = 'Invalid hostname: ' + hostname;
} else if (port <= 0 || port > 63335) {
} else if (port <= 0 || port > 65535) {
msg = 'Invalid port: ' + port;
} else {
if (pk) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment