diff options
| author | Bruno Cesar Ribas <bcribas@users.noreply.github.com> | 2025-09-22 17:40:27 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-22 17:40:27 +0000 |
| commit | 5d043bdbc2879370254e0ef385fd288a0a6597a3 (patch) | |
| tree | af2a65b88f5f34e53ef9b7aa8f91301fff44edba /src/admin/report/webcast.php | |
| parent | 5892e33610cd23e9a4668d9962b679f7ae678be2 (diff) | |
| parent | 7a487e2d01e5839d128321db77b9c50911da7923 (diff) | |
| download | boca-5d043bdbc2879370254e0ef385fd288a0a6597a3.tar.gz boca-5d043bdbc2879370254e0ef385fd288a0a6597a3.zip | |
Merge pull request #45 from jonessouza/master
Fix "Name mismatch" in webcast.php
Diffstat (limited to 'src/admin/report/webcast.php')
| -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 { |