Index: branches/RC/core/units/general/helpers/category_helper.php =================================================================== diff -u -r8929 -r9279 --- branches/RC/core/units/general/helpers/category_helper.php (.../category_helper.php) (revision 8929) +++ branches/RC/core/units/general/helpers/category_helper.php (.../category_helper.php) (revision 9279) @@ -102,6 +102,7 @@ $block_params['separator'] = $params['separator']; $no_current = isset($params['no_current']) && $params['no_current']; + $backup_category_id = $this->Application->GetVar('c_id'); foreach ($category_path as $category_id => $category_name) { $block_params['cat_id'] = $category_id; $block_params['cat_name'] = $block_params['title'] = $category_name; @@ -129,6 +130,7 @@ $this->Application->SetVar('c_id', $category_id); $ret .= $this->Application->ParseBlock($block_params, 1); } + $this->Application->SetVar('c_id', $backup_category_id); return $ret; }