Commit 0824f0cc38a2938d03067e13e918621b07f933ac
1 parent
e123c8fb
url man
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
common/modules/product/CatalogUrlManager.php
| ... | ... | @@ -209,7 +209,7 @@ class CatalogUrlManager implements UrlRuleInterface { |
| 209 | 209 | case 'catalog/category': |
| 210 | 210 | if (!empty($params['category'])) { |
| 211 | 211 | $category_alias = is_object($params['category']) ? $params['category']->alias : strtolower($params['category']); |
| 212 | - $url = 'catalog/'. $category_alias; | |
| 212 | + $url = 'catalog/'. $category_alias.'/'; | |
| 213 | 213 | unset($params['category']); |
| 214 | 214 | } else { |
| 215 | 215 | $url = 'catalog/'; | ... | ... |