diff options
| author | jonessouza <47584042+jonessouza@users.noreply.github.com> | 2025-06-13 23:01:55 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-13 23:01:55 +0000 |
| commit | ca414b97d5d142fcbdf67491c517faf0fe248293 (patch) | |
| tree | 6df2c1efad8acf34aabf472bba651bb1b00394eb /src/admin | |
| parent | 23d13984f23e306c4015bdfbdb073a35c4213915 (diff) | |
| download | boca-ca414b97d5d142fcbdf67491c517faf0fe248293.tar.gz boca-ca414b97d5d142fcbdf67491c517faf0fe248293.zip | |
Update webcast.php
Inclui o "No - Name mismatch" na lista de vereditos que não gera mais penalidade. Isso permite que o Animeitor não contabilize submissões do tipo "No - Name mismatch", como uma penalidade.
Diffstat (limited to 'src/admin')
| -rw-r--r-- | src/admin/report/webcast.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/admin/report/webcast.php b/src/admin/report/webcast.php index 75030be..6f6cf7c 100644 --- a/src/admin/report/webcast.php +++ b/src/admin/report/webcast.php @@ -267,7 +267,7 @@ for ($i = 0; $i < $numRuns; $i++) { } else if ($run[$i]['answer'] == 'Not answered yet') { $runfile .= '?' . "\n"; } - else if($run[$i]['answer'] == 'NO - Compilation error' || $run[$i]['answer'] == 'NO - Contact staff'){ + else if($run[$i]['answer'] == 'NO - Compilation error' || $run[$i]['answer'] == 'NO - Contact staff' || $run[$i]['answer'] == 'NO - Name mismatch'){ $runfile .= 'X' . "\n"; } else { |