Merged in release/3.8.0 (pull request #8615)

Updating develop branch with last changes in release/3.8.0, issues with plugins
This commit is contained in:
Julio Cesar Laura Avendaño
2022-10-07 19:46:08 +00:00
3 changed files with 46 additions and 1 deletions

View File

@@ -262,6 +262,30 @@ try {
if (!defined('DB_PASS')) {
define('DB_PASS', $DB_PASS);
}
if (!defined('DB_RBAC_HOST')) {
define('DB_RBAC_HOST', $DB_RBAC_HOST);
}
if (!defined('DB_RBAC_NAME')) {
define('DB_RBAC_NAME', $DB_RBAC_NAME);
}
if (!defined('DB_RBAC_USER')) {
define('DB_RBAC_USER', $DB_RBAC_USER);
}
if (!defined('DB_RBAC_PASS')) {
define('DB_RBAC_PASS', $DB_RBAC_PASS);
}
if (!defined('DB_REPORT_HOST')) {
define('DB_REPORT_HOST', $DB_REPORT_HOST);
}
if (!defined('DB_REPORT_NAME')) {
define('DB_REPORT_NAME', $DB_REPORT_NAME);
}
if (!defined('DB_REPORT_USER')) {
define('DB_REPORT_USER', $DB_REPORT_USER);
}
if (!defined('DB_REPORT_PASS')) {
define('DB_REPORT_PASS', $DB_REPORT_PASS);
}
if (!defined('SYS_SKIN')) {
define('SYS_SKIN', $arraySystemConfiguration['default_skin']);
}

View File

@@ -1,6 +1,7 @@
<?php
use Illuminate\Support\Facades\Cache;
use PHPMailer\PHPMailer\SMTP;
use ProcessMaker\Core\System;
use ProcessMaker\Plugins\PluginRegistry;
use ProcessMaker\Validation\ValidationUploadedFiles;
@@ -430,7 +431,7 @@ class adminProxy extends HttpProxyController
$SMTPSecure = $_POST['UseSecureCon'];
$Server = new Net($server);
$smtp = new SMTP;
$smtp = new SMTP();
$timeout = 10;
$hostinfo = array();