Fixed bug where on importing qsos notes field was being ignored
这个提交包含在:
父节点
ea15cde52c
当前提交
aba94d9200
共有 1 个文件被更改,包括 2 次插入 和 2 次删除
|
|
@ -573,8 +573,8 @@ class Logbook_model extends CI_Model {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Store Notes
|
// Store Notes
|
||||||
if(isset($record['NOTES'])) {
|
if(isset($record['notes'])) {
|
||||||
$comment = $record['NOTES'];
|
$comment = $record['notes'];
|
||||||
} else {
|
} else {
|
||||||
$comment = "";
|
$comment = "";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用