Index: units/admin/admin_tag_processor.php =================================================================== --- units/admin/admin_tag_processor.php (revision 15331) +++ units/admin/admin_tag_processor.php (working copy) @@ -156,15 +156,19 @@ break; case 'label': - if ($section && ($section != 'in-portal:root')) { - // don't translate label for top section, because it's already translated - $no_editing = array_key_exists('no_editing', $params) ? $params['no_editing'] : false; + $res = ''; - $res = $this->Application->Phrase($section_data['label'], !$no_editing); + if ( $section ) { + if ( $section == 'in-portal:root' ) { + // don't translate label for top section, because it's already translated + $res = $section_data['label']; + } + else { + $no_editing = array_key_exists('no_editing', $params) ? $params['no_editing'] : false; + + $res = $this->Application->Phrase($section_data['label'], !$no_editing); + } } - else { - $res = ''; - } break; default: