Skip to content

Commit

Permalink
Use bdi element also for Joomla update
Browse files Browse the repository at this point in the history
  • Loading branch information
richard67 committed Oct 17, 2021
1 parent f2187e4 commit bbccb73
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
<?php echo JText::_('COM_JOOMLAUPDATE_VIEW_DEFAULT_INSTALLED'); ?>
</td>
<td>
<?php echo '&#x200E;' . $this->updateInfo['installed']; ?>
<?php echo '<bdi>' . $this->updateInfo['installed'] . '</bdi>'; ?>
</td>
</tr>
<tr>
<td>
<?php echo JText::_('COM_JOOMLAUPDATE_VIEW_DEFAULT_LATEST'); ?>
</td>
<td>
<?php echo '&#x200E;' . $this->updateInfo['latest']; ?>
<?php echo '<bdi>' . $this->updateInfo['latest'] . '</bdi>'; ?>
</td>
</tr>
<tr>
Expand Down

0 comments on commit bbccb73

Please sign in to comment.