File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
app/code/Magento/UrlRewrite/view/adminhtml/templates/messages Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 8
8
$ urls = $ block ->getData ('urls ' );
9
9
?>
10
10
<h4>
11
- <?php
12
- echo $ block ->escapeHtml (__ ('The value specified in the URL Key field would generate a URL that already exists. ' ));
13
- ?>
11
+ <?= $ block ->escapeHtml (__ ('The value specified in the URL Key field would generate a URL that already exists. ' )); ?>
14
12
</h4>
15
13
<p>
16
- <?php
17
- echo $ block ->escapeHtml (
18
- __ (
19
- 'To resolve this conflict, you can either change the value of the URL Key field '
20
- . '(located in the Search Engine Optimization section) to a unique value, or change the Request Path fields '
21
- . ' in all locations listed below: '
22
- )
14
+ <?= $ 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
+ )
23
20
);
24
-
21
+ ?>
22
+ <?php
25
23
if (!empty ($ urls )) {
26
24
foreach ($ urls as $ url => $ urlTitle ) {
27
- echo '<p> - <a href=" ' . $ block ->escapeHtml ($ url ) . '"> ' . $ block ->escapeHtml ($ urlTitle ) . '</a></p> ' ;
25
+ ?>
26
+ <?= '<p> - <a href=" ' . $ block ->escapeHtml ($ url ) . '"> ' . $ block ->escapeHtml ($ urlTitle ) . '</a></p> ' ; ?>
27
+ <?php
28
28
}
29
29
}
30
30
?>
You can’t perform that action at this time.
0 commit comments