Merge pull request #2710 from HB9HIL/fix_qso_time_override
Fix QSO Start Time gets overwritten when editing a QSO in Live QSO Logging
这个提交包含在:
当前提交
e9d704c46e
共有 1 个文件被更改,包括 2 次插入 和 2 次删除
|
|
@ -55,12 +55,12 @@
|
|||
<div class="form-row">
|
||||
<div class="form-group col-sm-6">
|
||||
<label for="start_date">Start Date/Time</label>
|
||||
<input type="text" class="form-control form-control-sm input_date" name="time_on" id="time_on" value="<?php echo $qso->COL_TIME_ON; ?>">
|
||||
<input type="text" class="form-control form-control-sm" name="time_on" id="time_on" value="<?php echo $qso->COL_TIME_ON; ?>">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-sm-6">
|
||||
<label for="start_time">End Date/Time</label>
|
||||
<input type="text" class="form-control form-control-sm input_time" name="time_off" id="time_off" value="<?php echo $qso->COL_TIME_OFF; ?>">
|
||||
<input type="text" class="form-control form-control-sm" name="time_off" id="time_off" value="<?php echo $qso->COL_TIME_OFF; ?>">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
|
|
|
|||
正在加载…
在新工单中引用