version 1.768, 2020/05/08 14:56:53
|
version 1.769, 2020/05/08 15:12:34
|
Line 5310 sub displaySubByDates {
|
Line 5310 sub displaySubByDates {
|
} |
} |
my @matchKey; |
my @matchKey; |
if ($isTask) { |
if ($isTask) { |
@matchKey = sort(grep /^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys); |
@matchKey = sort(grep(/^resource\.\d+\.\Q$partid\E\.award$/,@versionKeys)); |
} elsif ($is_tool) { |
} elsif ($is_tool) { |
@matchKey = sort(grep /^resource\.\Q$partid\E\.awarded$/,@versionKeys); |
@matchKey = sort(grep(/^resource\.\Q$partid\E\.awarded$/,@versionKeys)); |
} else { |
} else { |
@matchKey = sort(grep /^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys); |
@matchKey = sort(grep(/^resource\.\Q$partid\E\..*?\.submission$/,@versionKeys)); |
} |
} |
# next if ($$record{"$version:resource.$partid.solved"} eq ''); |
# next if ($$record{"$version:resource.$partid.solved"} eq ''); |
my $display_part=&get_display_part($partid,$symb); |
my $display_part=&get_display_part($partid,$symb); |