Fixed bug where on importing qsos notes field was being ignored

这个提交包含在:
Peter Goodhall 2012-10-31 17:41:26 +00:00
父节点 ea15cde52c
当前提交 aba94d9200

查看文件

@ -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 = "";
} }