Skip to content

Commit

Permalink
remove id from user notes modal
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepereiradasilva committed Feb 26, 2016
1 parent c0d6da9 commit 7bd7be2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions administrator/components/com_users/views/notes/tmpl/modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<li>
<div class="fltlft utitle">
<?php if ($item->subject) : ?>
<h4><?php echo JText::sprintf('COM_USERS_NOTE_N_SUBJECT', (int) $item->id, $this->escape($item->subject)); ?></h4>
<h4><?php echo JText::sprintf('COM_USERS_NOTE_N_SUBJECT', $this->escape($item->subject)); ?></h4>
<?php else : ?>
<h4><?php echo JText::sprintf('COM_USERS_NOTE_N_SUBJECT', (int) $item->id, JText::_('COM_USERS_EMPTY_SUBJECT')); ?></h4>
<h4><?php echo JText::sprintf('COM_USERS_NOTE_N_SUBJECT', JText::_('COM_USERS_EMPTY_SUBJECT')); ?></h4>
<?php endif; ?>
</div>

Expand Down

0 comments on commit 7bd7be2

Please sign in to comment.