Import ADIF 'comment' field in addition to 'notes'.

PS: Perhaps 'notes' should go into COL_NOTES instead.
这个提交包含在:
Alexandru Csete 2016-02-13 22:21:23 +01:00
父节点 d404f80e7d
当前提交 ad50b55cb6

查看文件

@ -735,7 +735,9 @@ class Logbook_model extends CI_Model {
}
// Store Notes
if(isset($record['notes'])) {
if (isset($record['comment'])) {
$comment = $record['comment'];
} else if (isset($record['notes'])) {
$comment = $record['notes'];
} else {
$comment = "";