Skip to content
Snippets Groups Projects
Commit 73101a65 authored by Andreas Romeyke's avatar Andreas Romeyke
Browse files

- fixed sorted output if table based

parent 9c478a88
No related branches found
No related tags found
No related merge requests found
......@@ -190,7 +190,7 @@ sub get_ldp_projects {
}
}
}
return keys %projects;
return sort keys %projects;
}
sub execute {
......@@ -252,7 +252,7 @@ sub execute {
sub prepare_for_table($results, $ldp_projects) {
my @table;
foreach my $aip_state (qw(new updated total)) {
foreach my $flavour (keys %{$results->{flavour}}) { # count size file
foreach my $flavour (sort keys %{$results->{flavour}}) { # count size file
foreach my $ldp_funder (qw(saxony misc none full)) {
my $line;
$line->{_set} = $ldp_funder;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment