fix: 9c2b2a96ab
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Baoshuo Ren 2022-09-20 20:00:27 +08:00
parent d9be3be581
commit 519dbb8700
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

View File

@ -169,10 +169,17 @@ function calcStandings($contest, $contest_data, &$score, &$standings, $update_co
for ($i = 0; $i < $n_people; $i++) {
if ($i == 0 || !$is_same_rank($standings[$i - 1], $standings[$i])) {
if ($show_reviews) {
$standings[$i][] = $standings[$i][3];
$standings[$i][3] = $i + 1;
} else {
$standings[$i][] = $i + 1;
}
} else {
if ($show_reviews) {
$standings[$i][] = $standings[$i][3];
}
$standings[$i][] = $standings[$i - 1][3];
}
}