Skip to content

Commit

Permalink
Merge pull request #2 from JoomliC/patch-3
Browse files Browse the repository at this point in the history
Fix CS
  • Loading branch information
joomdonation authored May 28, 2018
2 parents 0e3a1ae + 7f1102b commit 7581098
Showing 1 changed file with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
<table class="table table-striped" id="consentList">
<thead>
<tr>
<th width="10%" class="nowrap">
<th width="10%" class="nowrap">
<?php echo JHtml::_('searchtools.sort', 'JGLOBAL_USERNAME', 'u.username', $listDirn, $listOrder); ?>
</th>
</th>
<th width="10%" class="nowrap">
<?php echo JText::_('COM_PRIVACY_HEADING_CONSENT_SUBJECT'); ?>
<?php echo JText::_('COM_PRIVACY_HEADING_CONSENT_SUBJECT'); ?>
</th>
<th class="nowrap">
<?php echo JText::_('COM_PRIVACY_HEADING_CONSENT_BODY'); ?>
</th>
<th class="nowrap">
<?php echo JText::_('COM_PRIVACY_HEADING_CONSENT_BODY'); ?>
</th>
<th width="15%" class="nowrap">
<?php echo JHtml::_('searchtools.sort', 'COM_PRIVACY_HEADING_CONSENT_CREATED', 'a.created', $listDirn, $listOrder); ?>
</th>
Expand All @@ -72,9 +72,11 @@
<?php echo $item->username; ?>
</td>
<td>
<?php echo $item->subject; ?>
<?php echo $item->subject; ?>
</td>
<td>
<?php echo $item->body; ?>
</td>
<td><?php echo $item->body; ?></td>
<td class="break-word">
<span class="hasTooltip" title="<?php echo JHtml::_('date', $item->created, JText::_('DATE_FORMAT_LC6')); ?>">
<?php echo JHtml::_('date.relative', new JDate($item->created), null, $now); ?>
Expand Down

0 comments on commit 7581098

Please sign in to comment.