diff options
| -rw-r--r-- | src/admin/report/webcast.php | 2 | ||||
| -rw-r--r-- | src/flog.php | 2 |
2 files changed, 2 insertions, 2 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 { diff --git a/src/flog.php b/src/flog.php index ca168f0..ea6805d 100644 --- a/src/flog.php +++ b/src/flog.php @@ -31,7 +31,7 @@ CREATE TABLE \"logtable\" ( \"contestnumber\" int4 NOT NULL, -- (id do concurso) \"sitenumber\" int4 NOT NULL, -- (id do site local) \"loguser\" int4, -- (usuario envolvido com o log) - \"logip\" varchar(20) NOT NULL, -- (numero do site do usuario envolvido) + \"logip\" varchar(160) NOT NULL, -- (numero do site do usuario envolvido) \"logdate\" int4 NOT NULL, -- (dia/hora da criacao deste registro) \"logtype\" varchar(20) NOT NULL, -- (tipo de registro: error, warn, info, debug) \"logdata\" text NOT NULL, -- (descricao do registro) |