Import ADIF 'comment' field in addition to 'notes'.
PS: Perhaps 'notes' should go into COL_NOTES instead.
这个提交包含在:
父节点
d404f80e7d
当前提交
ad50b55cb6
共有 1 个文件被更改,包括 3 次插入 和 1 次删除
|
|
@ -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 = "";
|
||||
|
|
|
|||
正在加载…
在新工单中引用