Index: units/helpers/category_helper.php =================================================================== --- units/helpers/category_helper.php (revision 14949) +++ units/helpers/category_helper.php (working copy) @@ -100,8 +100,15 @@ } else { $block_params['current'] = ($template == $current_template); - $block_params['title'] = $this->Application->Phrase($title); + if ($title == '__page__') { + $block_params['title'] = $this->Application->ProcessParsedTag('st', 'PageInfo', Array ('type' => 'title')); + } + else { + $block_params['title'] = $this->Application->Phrase($title); + } + + $block_params['name'] = $template == $current_template ? $params['current_render_as'] : $params['render_as']; }