From f5c2785321ec16c0d2c63bdb366b317ec327a961 Mon Sep 17 00:00:00 2001 From: "David R Newman (EPrints 3.4 development)" Date: Fri, 24 Jan 2025 18:40:09 +0000 Subject: [PATCH] Fixes #13 --- lib/lang/en/phrases/reports.xml | 3 +++ lib/plugins/EPrints/Plugin/Screen/Report.pm | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/lang/en/phrases/reports.xml b/lib/lang/en/phrases/reports.xml index 2abf9e5..680214e 100644 --- a/lib/lang/en/phrases/reports.xml +++ b/lib/lang/en/phrases/reports.xml @@ -48,4 +48,7 @@ Export Fields Name + + | + diff --git a/lib/plugins/EPrints/Plugin/Screen/Report.pm b/lib/plugins/EPrints/Plugin/Screen/Report.pm index 7f2b8fe..ab291c5 100644 --- a/lib/plugins/EPrints/Plugin/Screen/Report.pm +++ b/lib/plugins/EPrints/Plugin/Screen/Report.pm @@ -1008,7 +1008,7 @@ sub render_sort_options if( !$first ) { - $sort_links->appendChild( $repo->html_phrase( "Update/Views:group_seperator" ) ); + $sort_links->appendChild( $repo->html_phrase( "Update/Views:group_separator" ) ); } if( defined $self->{processor}->{sort} && $self->{processor}->{sort} eq $sort_value ) @@ -1070,7 +1070,7 @@ sub render_group_options if( !$first ) { - $group_links->appendChild( $repo->html_phrase( "Update/Views:group_seperator" ) ); + $group_links->appendChild( $repo->html_phrase( "Update/Views:group_separator" ) ); } if( defined $self->{processor}->{group} && $self->{processor}->{group} eq $group_field ) @@ -1089,7 +1089,7 @@ sub render_group_options } #no grouping link at the end - $group_links->appendChild( $repo->html_phrase( "Update/Views:group_seperator" ) ); + $group_links->appendChild( $repo->html_phrase( "Update/Views:group_separator" ) ); if( defined $self->{processor}->{group} && $self->{processor}->{group} ne "" ) { my $link = $repo->render_link( 'javascript:group_report("")' ); @@ -1135,7 +1135,7 @@ sub render_refine_search $search_links->appendChild( $new_link ); #add a separator... - $search_links->appendChild( $repo->html_phrase( "Update/Views:group_seperator" ) ); + $search_links->appendChild( $repo->html_phrase( "Update/Views:group_separator" ) ); #set up refine search link my $refine_baseurl = URI->new( $self->{session}->get_uri );