Commit e123c8fb7584cd34f8f88562d364385f8d8620b0
1 parent
6f490a3a
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/'; | ... | ... |