Skip to content

Commit 0a7fd8c

Browse files
committed
MAGETWO-66480: [GITHUB] URL key for specified store already exists #6671
- code style fix
1 parent 3b55240 commit 0a7fd8c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

app/code/Magento/UrlRewrite/view/adminhtml/templates/messages/url_duplicate_message.phtml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ $urls = $block->getData('urls');
1212
</h4>
1313
<p>
1414
<?=$block->escapeHtml(
15-
__(
16-
'To resolve this conflict, you can either change the value of the URL Key field '
17-
. '(located in the Search Engine Optimization section) to a unique value, or change the Request Path fields'
18-
. ' in all locations listed below:'
19-
)
15+
__(
16+
'To resolve this conflict, you can either change the value of the URL Key field '
17+
. '(located in the Search Engine Optimization section) to a unique value, or change the Request Path fields'
18+
. ' in all locations listed below:'
19+
)
2020
);
2121
?>
2222
<?php
2323
if (!empty($urls)) {
2424
foreach ($urls as $url => $urlTitle) {
2525
?>
26-
<?='<p> - <a href="' . $block->escapeHtml($url) . '">' . $block->escapeHtml($urlTitle) . '</a></p>'; ?>
26+
<?='<p> - <a href="' . $block->escapeHtml($url) . '">' . $block->escapeHtml($urlTitle) . '</a></p>'; ?>
2727
<?php
2828
}
2929
}

0 commit comments

Comments
 (0)