Improvement in audit log when a pm table is edited
This commit is contained in:
@@ -357,9 +357,9 @@ class pmTablesProxy extends HttpProxyController
|
|||||||
|
|
||||||
foreach ($columns as $i => $column) {
|
foreach ($columns as $i => $column) {
|
||||||
if ($i != $nFields) {
|
if ($i != $nFields) {
|
||||||
$fieldsName = $fieldsName . $columns[$i]->field_name . ", ";
|
$fieldsName = $fieldsName . $columns[$i]->field_name . " [" . implode(', ', get_object_vars($column)) . "], ";
|
||||||
} else {
|
} else {
|
||||||
$fieldsName = $fieldsName . $columns[$i]->field_name . ".";
|
$fieldsName = $fieldsName . $columns[$i]->field_name . " [" . implode(', ', get_object_vars($column)) . "].";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user