Index: branches/5.2.x/core/units/helpers/navigation_bar.php =================================================================== diff -u -N -r16513 -r16559 --- branches/5.2.x/core/units/helpers/navigation_bar.php (.../navigation_bar.php) (revision 16513) +++ branches/5.2.x/core/units/helpers/navigation_bar.php (.../navigation_bar.php) (revision 16559) @@ -1,6 +1,6 @@ Application->recallObject('CategoryHelper'); $module_info = $category_helper->getCategoryModule($this->_params, array_keys($category_path)); - $module_item_id = $this->Application->GetVar($module_info['Var'] . '_id'); + $module_item_id = $module_info ? $this->Application->GetVar($module_info['Var'] . '_id') : false; $ret = ''; $block_params = $this->_getBaseParams(); Index: branches/5.2.x/core/units/helpers/category_helper.php =================================================================== diff -u -N -r16513 -r16559 --- branches/5.2.x/core/units/helpers/category_helper.php (.../category_helper.php) (revision 16513) +++ branches/5.2.x/core/units/helpers/category_helper.php (.../category_helper.php) (revision 16559) @@ -1,6 +1,6 @@