Skip to content
This repository has been archived by the owner on Apr 5, 2018. It is now read-only.

Commit

Permalink
More viewer fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Olde Hampsink committed Oct 31, 2016
1 parent 86b33e7 commit f7bab9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/AuditLogService.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function view($id)
'label' => $item['label'],
'changed' => !isset($log['before'][$handle]) || ($item['value'] != $log['before'][$handle]['value']),
'after' => $item['value'],
'before' => $log['before'][$handle]['value'],
'before' => isset($log['before'][$handle]) ? $log['before'][$handle]['value'] : '',
);
}

Expand Down

0 comments on commit f7bab9f

Please sign in to comment.