Fixed bug where on importing qsos notes field was being ignored

This commit is contained in:
Peter Goodhall
2012-10-31 17:41:26 +00:00
parent ea15cde52c
commit aba94d9200

View File

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