Merge pull request #1258 from AndreasK79:contest_logging_fix

[Contest Logging] Bugfix for exchange logging.
这个提交包含在:
Andreas Kristiansen 2021-10-31 17:12:15 +01:00 提交者 GitHub
当前提交 2549c305e9
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -24,15 +24,15 @@ class Logbook_model extends CI_Model {
// Contest exchange, need to separate between serial and other type of exchange
if($this->input->post('exchangetype')) {
$srx_string = $this->input->post('exch_recv');
$stx_string = $this->input->post('exch_sent');
$srx = $this->input->post('exch_serial_r');
$stx = $this->input->post('exch_serial_s');
$srx_string = $this->input->post('exch_recv') == '' ? null : $this->input->post('exch_recv');
$stx_string = $this->input->post('exch_sent') == '' ? null : $this->input->post('exch_sent');
$srx = $this->input->post('exch_serial_r') == '' ? null : $this->input->post('exch_serial_r');
$stx = $this->input->post('exch_serial_s') == '' ? null : $this->input->post('exch_serial_s');
} else {
$srx_string = null;
$stx_string = null;
$srx = null;
$stx = null;
$srx_string = null;
$stx_string = null;
$srx = null;
$stx = null;
}
if($this->input->post('contestname')) {