We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8bebf0 commit df19fedCopy full SHA for df19fed
app/code/Magento/UrlRewrite/view/adminhtml/templates/messages/url_duplicate_message.phtml
@@ -23,9 +23,8 @@ echo $block->escapeHtml(
23
);
24
25
if (!empty($urls)) {
26
- foreach ($urls as $adminUrl => $requestPath) {
27
- // key is the url that has been setup by the controller with the information from the exception
28
- echo '<p> - <a href="' . $block->escapeHtml($adminUrl) . '">' . $block->escapeHtml($requestPath) . '</a></p>';
+ foreach ($urls as $url => $urlTitle) {
+ echo '<p> - <a href="' . $block->escapeHtml($url) . '">' . $block->escapeHtml($urlTitle) . '</a></p>';
29
}
30
31
?>
0 commit comments