switched quicklog method to POST
这个提交包含在:
父节点
6d8804b189
当前提交
11e6d2c2ba
共有 2 个文件被更改,包括 3 次插入 和 5 次删除
|
|
@ -238,10 +238,8 @@
|
|||
form.action = "<?php echo site_url('search'); ?>";
|
||||
form.method = "post";
|
||||
} else if (action === 'qso') {
|
||||
form.action = "<?php echo site_url('qso'); ?>";
|
||||
form.method = "get";
|
||||
input.name = "manual";
|
||||
input.value = "0"; // Set to 1 if go to "Post-QSO" logging
|
||||
form.action = "<?php echo site_url('qso?manual=0'); ?>"; // Set ?manual=0 to 1 if go to "Post-QSO" logging
|
||||
form.method = "post";
|
||||
}
|
||||
form.submit();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@
|
|||
<div class="form-row">
|
||||
<div class="form-group col-md-9">
|
||||
<label for="callsign"><?php echo lang('gen_hamradio_callsign'); ?></label><?php if ($this->optionslib->get_option('dxcache_url') != '') { ?> <i id="check_cluster" data-toggle="tooltip" data-original-title="Search DXCluster for latest Spot" class="fas fa-search"></i> <?php } ?>
|
||||
<input type="text" class="form-control" id="callsign" name="callsign" value="<?php echo !empty($_GET['callsign']) ? $_GET['callsign'] : ''; ?>" required>
|
||||
<input type="text" class="form-control" id="callsign" name="callsign" value="<?php if ($this->input->post('callsign') !== null) { echo htmlspecialchars($this->input->post('callsign')); }; ?>" required>
|
||||
<small id="callsign_info" class="badge badge-secondary"></small> <a id="lotw_link"><small id="lotw_info" class="badge badge-success"></small></a>
|
||||
</div>
|
||||
<div class="form-group col-md-3 align-self-center">
|
||||
|
|
|
|||
正在加载…
在新工单中引用