Merged in bugfix/HOR-3670-RG-2 (pull request #5926)

HOR-3670

Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
Roly
2017-08-11 20:24:24 +00:00
committed by Julio Cesar Laura Avendaño
23 changed files with 822 additions and 919 deletions

View File

@@ -271,7 +271,7 @@ class DataBaseConnection
$flagTns = ($dataCon["DBS_TYPE"] == "oracle" && $dataCon["DBS_CONNECTION_TYPE"] == "TNS")? 1 : 0;
if ($flagTns == 0) {
$Server = new \NET($dataCon['DBS_SERVER']);
$Server = new \Net($dataCon['DBS_SERVER']);
// STEP 1 : Resolving Host Name
$respTest['0'] = array();
@@ -356,7 +356,7 @@ class DataBaseConnection
}
}
} else {
$net = new \NET();
$net = new \Net();
//STEP 0: Trying to open database type TNS
$respTest["0"] = array();

View File

@@ -316,7 +316,7 @@ class EmailServer
$mailTo = $arrayData["MAIL_TO"];
$smtpSecure = $arrayData["SMTPSECURE"];
$serverNet = new \NET($server);
$serverNet = new \Net($server);
$smtp = new \SMTP();
$timeout = 10;