Skip to content

Commit f922cfc

Browse files
[5.4] Fix Display of Deleted Users in User Notes (joomla#45223)
1 parent 23c79b5 commit f922cfc

File tree

1 file changed

+1
-1
lines changed
  • administrator/components/com_users/tmpl/notes

1 file changed

+1
-1
lines changed

administrator/components/com_users/tmpl/notes/default.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
</div>
9898
</th>
9999
<td class="d-none d-md-table-cell">
100-
<?php echo $this->escape($item->user_name); ?>
100+
<?php echo !empty($item->user_name) ? $this->escape($item->user_name) : '[ ' . Text::_('JNONE') . ' ]'; ?>
101101
</td>
102102
<td class="d-none d-md-table-cell">
103103
<?php if ($item->review_time !== null) : ?>

0 commit comments

Comments
 (0)