Skip to content

Commit

Permalink
allow non scalars in extra data
Browse files Browse the repository at this point in the history
  • Loading branch information
cornernote committed Jul 14, 2015
1 parent 35064b1 commit bb755e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion audit/views/error/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
if ($auditError->extra) {
echo CHtml::tag('div', array(
'class' => 'extra',
), CHtml::tag('h2', array(), Yii::t('audit', 'Extra')) . AuditHelper::unpack($auditError->extra));
), CHtml::tag('h2', array(), Yii::t('audit', 'Extra')) . '<pre>' . print_r(AuditHelper::unpack($auditError->extra), true) . '</pre>');
}

0 comments on commit bb755e0

Please sign in to comment.