Skip to content

Commit

Permalink
Open release notes in a new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
robaimes committed Oct 31, 2024
1 parent dd5a243 commit ad0890f
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions view/adminhtml/templates/messages/update-available.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,15 @@ use Magento\Framework\Escaper;
<br/>
<span>
<?= $escaper->escapeHtml(__(
'Your current version is %current_version and the latest version available is %latest_version.',
'Your current version is <code>%current_version</code> and the latest version available is <code>%latest_version</code>.',
[
'current_version' => $block->getCurrentVersion(),
'latest_version' => $block->getLatestVersion(),
]
)); ?>
), ['code']); ?>
</span>
<br/>
<span>
<?= $escaper->escapeHtml(__(
'You can review the release notes on <a href="%url">Adobe Experience League</a>.',
[
'url' => $block->getReleaseNotesUrl(),
]
), ['a']); ?>
</span>
<a href="<?= $escaper->escapeUrl($block->getReleaseNotesUrl()) ?>" target="_blank" rel="noopener noreferrer">
<?= $escaper->escapeHtml(__('View release notes')); ?>
</a>
</div>

0 comments on commit ad0890f

Please sign in to comment.