diff options
Diffstat (limited to 'httemplate/elements/menu.html')
-rw-r--r-- | httemplate/elements/menu.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/elements/menu.html b/httemplate/elements/menu.html index 455c7b364..5675c7b17 100644 --- a/httemplate/elements/menu.html +++ b/httemplate/elements/menu.html @@ -115,8 +115,11 @@ foreach my $svcdb ( FS::part_svc->svc_tables() ) { foreach my $sort ( @$sorts ) { + my $field_info = FS::part_svc->svc_table_fields($svcdb)->{$sort}; + my $label = $field_info->{'label_sort'} || 'by '.$field_info->{'label'}; + my $title = "All $lcname"; - $title .= " by ". FS::part_svc->svc_table_fields($svcdb)->{$sort}->{'label'} + $title .= " $label" if scalar(@$sorts) > 1; $report_svc{$title} = |