Skip to content

Commit

Permalink
Missing span closing tag
Browse files Browse the repository at this point in the history
  • Loading branch information
infograf768 committed Nov 20, 2021
1 parent a7d8e2c commit 747ee0f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
if ($saved_ref != 0 && $allow_develop == 1 && $ref_tag == 'en-GB' && $istranslation == 0)
{
Factory::getApplication()->enqueueMessage(
Text::sprintf('COM_LOCALISE_NOTICE_EDIT_REFERENCE_HAS_LIMITED_USE', $source_ref),
'notice');
Text::sprintf('COM_LOCALISE_NOTICE_EDIT_REFERENCE_HAS_LIMITED_USE', $source_ref),
'notice');
}

$app = Factory::getApplication();
Expand Down Expand Up @@ -193,7 +193,7 @@ function returnAll()
<?php echo HTMLHelper::_('uitab.endTab'); ?>
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'strings', Text::_('COM_LOCALISE_FIELDSET_TRANSLATION_STRINGS')); ?>
<div class="alert alert-info">
<span class="fas fa-info-circle info-line" aria-hidden="true"</span><span class="sr-only"><?php echo Text::_('INFO'); ?></span>
<span class="fas fa-info-circle info-line" aria-hidden="true"></span><span class="sr-only"><?php echo Text::_('INFO'); ?></span>
<?php if ($istranslation) : ?>
<?php echo Text::_('COM_LOCALISE_TRANSLATION_NOTICE'); ?>
<?php else : ?>
Expand Down Expand Up @@ -244,7 +244,7 @@ function returnAll()
echo HTMLHelper::_('bootstrap.addSlide', 'localise-translation-sliders', Text::_($fieldSet->label), 'collapse' . $i++);
if ($fieldSet->label == "COM_LOCALISE_TEXT_TRANSLATION_NOTINREFERENCE") : ?>
<div class="alert alert-info">
<span class="fas fa-info-circle info-line" aria-hidden="true"</span><span class="sr-only"><?php echo Text::_('INFO'); ?></span>
<span class="fas fa-info-circle info-line" aria-hidden="true"></span><span class="sr-only"><?php echo Text::_('INFO'); ?></span>
<?php if ($istranslation) : ?>
<?php echo Text::_('COM_LOCALISE_TOOLTIP_TRANSLATION_EXTRA_KEYS_IN_TRANSLATION'); ?>
<?php else : ?>
Expand Down

0 comments on commit 747ee0f

Please sign in to comment.