Merge pull request #840 from AndreasK79/adif_import_seconds_added

Added seconds to import function in logbook model
这个提交包含在:
Peter Goodhall 2021-01-20 23:32:49 +00:00 提交者 GitHub
当前提交 dde01feb38
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -1475,10 +1475,10 @@ class Logbook_model extends CI_Model {
$my_error = "";
// Join date+time
$time_on = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on']));
$time_on = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i:s', strtotime($record['time_on']));
if (isset($record['time_off'])) {
$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_off']));
$time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i:s', strtotime($record['time_off']));
} else {
$time_off = $time_on;
}