Skip to content

Commit

Permalink
MAGETWO-66480: [GITHUB] URL key for specified store already exists #6671
Browse files Browse the repository at this point in the history


- removing unwanted comments
- renaming vars
  • Loading branch information
cpartica committed Jun 21, 2017
1 parent a8bebf0 commit df19fed
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -23,9 +23,8 @@ echo $block->escapeHtml(
);

if (!empty($urls)) {
foreach ($urls as $adminUrl => $requestPath) {
// key is the url that has been setup by the controller with the information from the exception
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>';
}
}
?>
Expand Down

0 comments on commit df19fed

Please sign in to comment.