Index: branches/RC/core/units/general/helpers/category_helper.php =================================================================== diff -u -N -r11538 -r11610 --- branches/RC/core/units/general/helpers/category_helper.php (.../category_helper.php) (revision 11538) +++ branches/RC/core/units/general/helpers/category_helper.php (.../category_helper.php) (revision 11610) @@ -163,7 +163,7 @@ function getHomeCategoryPath($params, $current_category) { - $block_params['cat_id'] = $this->Application->findModule('Name', 'Proj-CMS', 'RootCat'); // 0; + $block_params['cat_id'] = $this->Application->findModule('Name', 'Core', 'RootCat'); // 0; $block_params['no_editing'] = 1; $block_params['current'] = $current_category == $block_params['cat_id'] ? 1 : 0; $block_params['separator'] = $params['separator']; @@ -209,7 +209,7 @@ WHERE '.$id_field.' = '.$main_category_id; $category_data = $this->Conn->GetRow($sql); - $skip_category = $this->Application->findModule('Name', 'Proj-CMS', 'RootCat'); + $skip_category = $this->Application->findModule('Name', 'Core', 'RootCat'); $cached_path[$main_category_id] = Array (); if ($category_data) { $category_names = explode('&|&', $category_data[$navbar_field]);