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:
Paula Quispe
2017-11-16 12:09:45 +00:00
committed by Julio Cesar Laura Avendaño
8 changed files with 10 additions and 10 deletions

View File

@@ -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);

View File

@@ -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: ";

View File

@@ -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);
}