Add RDP port to save method

This commit is contained in:
Tom Hatzer 2016-12-23 11:12:07 +01:00 committed by GitHub
parent eadc9b145e
commit 92069a29a3
1 changed files with 2 additions and 0 deletions

View File

@ -286,6 +286,8 @@ class ServerController extends AbstractServerController {
$clean["port"] = 443;
} elseif ($tmp["scheme"] === "http") {
$clean["port"] = 80;
} elseif ($tmp["scheme"] === "rdp") {
$clean["port"] = 3389;
}
}