Skip to content

Commit

Permalink
Fix HTML helper uses
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Babker committed Apr 14, 2019
1 parent 4149054 commit a0d7b07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -46,7 +46,7 @@
<strong><?php echo JText::_('COM_PRIVACY_HEADING_REQUEST_TYPE_TYPE_' . $row->request_type); ?></strong>
</a>
</div>
<div class="span5"><?php echo JHtml::_('PrivacyHtml.helper.statusLabel', $row->status); ?></div>
<div class="span5"><?php echo JHtml::_('privacy.statusLabel', $row->status); ?></div>
<div class="span2"><span class="badge badge-info"><?php echo $row->count; ?></span></div>
</div>
<?php if (in_array($row->status, array(0, 1))) : ?>
Expand Down
Expand Up @@ -37,7 +37,7 @@
<dd><?php echo $this->item->email; ?></dd>

<dt><?php echo JText::_('JSTATUS'); ?>:</dt>
<dd><?php echo JHtml::_('PrivacyHtml.helper.statusLabel', $this->item->status); ?></dd>
<dd><?php echo JHtml::_('privacy.statusLabel', $this->item->status); ?></dd>

<dt><?php echo JText::_('COM_PRIVACY_FIELD_REQUEST_TYPE_LABEL'); ?>:</dt>
<dd><?php echo JText::_('COM_PRIVACY_HEADING_REQUEST_TYPE_TYPE_' . $this->item->request_type); ?></dd>
Expand Down
Expand Up @@ -93,7 +93,7 @@
</div>
</td>
<td class="center">
<?php echo JHtml::_('PrivacyHtml.helper.statusLabel', $item->status); ?>
<?php echo JHtml::_('privacy.statusLabel', $item->status); ?>
</td>
<td>
<?php if ($item->status == 1 && $urgentRequestDate >= $itemRequestedAt) : ?>
Expand Down

0 comments on commit a0d7b07

Please sign in to comment.