Merged in bugfix/HOR-4070 (pull request #6180)
HOR-4070 Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
@@ -650,7 +650,7 @@ class IndicatorsCalculator
|
||||
}
|
||||
|
||||
private function pdoConnection() {
|
||||
$currentWS = !empty(config("system.workspace")) ? config("system.workspace") : 'Wokspace Undefined';
|
||||
$currentWS = !empty(config("system.workspace")) ? config("system.workspace") : 'Undefined Workspace';
|
||||
$workSpace = new WorkspaceTools($currentWS);
|
||||
$arrayHost = explode(':', $workSpace->dbHost);
|
||||
$host = "host=".$arrayHost[0];
|
||||
|
||||
@@ -63,7 +63,7 @@ class EmailServer
|
||||
$currentUser = $RBAC->aUserInfo['USER_INFO'];
|
||||
$info = array(
|
||||
'ip' => G::getIpAddress(),
|
||||
'workspace' => (!empty(config("system.workspace"))) ? config("system.workspace") : "Workspace undefined",
|
||||
'workspace' => (!empty(config("system.workspace"))) ? config("system.workspace") : "Undefined Workspace",
|
||||
'usrUid' => $currentUser['USR_UID']
|
||||
);
|
||||
$this->setContextLog($info);
|
||||
|
||||
@@ -1151,7 +1151,7 @@ class TimerEvent
|
||||
private function log($action, $value = "", $status = "action")
|
||||
{
|
||||
try {
|
||||
$workspace = (!empty(config("system.workspace")))? config("system.workspace") : "Wokspace Undefined";
|
||||
$workspace = (!empty(config("system.workspace")))? config("system.workspace") : "Undefined Workspace";
|
||||
$ipClient = \G::getIpAddress();
|
||||
|
||||
$actionTimer = "timereventcron: ";
|
||||
|
||||
@@ -138,7 +138,7 @@ class Bpmn extends Handler
|
||||
//Define the variables for the logging
|
||||
$info = array(
|
||||
'ip' => G::getIpAddress(),
|
||||
'workspace' => (!empty(config("system.workspace")))? config("system.workspace") : "Workspace undefined"
|
||||
'workspace' => (!empty(config("system.workspace")))? config("system.workspace") : "Undefined Workspace"
|
||||
);
|
||||
$this->setContextLog($info);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user