Merge branch '2655-Audit-log-con-entities' into 'develop'

Suppress entities in System audit log comments

See merge request artica/pandorafms!1714
This commit is contained in:
vgilc 2018-10-25 12:32:07 +02:00
commit ea2ed80f05
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ foreach ($result as $row) {
$data[2] = ui_print_help_tip(date($config["date_format"], $row["utimestamp"]), true) $data[2] = ui_print_help_tip(date($config["date_format"], $row["utimestamp"]), true)
. ui_print_timestamp($row["utimestamp"], true); . ui_print_timestamp($row["utimestamp"], true);
$data[3] = $row["ip_origen"]; $data[3] = $row["ip_origen"];
$data[4] = $row["descripcion"]; $data[4] = io_safe_output($row["descripcion"]);
if ($enterprise_include !== ENTERPRISE_NOT_HOOK) { if ($enterprise_include !== ENTERPRISE_NOT_HOOK) {
$data[5] = enterprise_hook("cell1EntepriseAudit", array($row["id_sesion"])); $data[5] = enterprise_hook("cell1EntepriseAudit", array($row["id_sesion"]));