mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-27 01:24:16 +00:00
Fixed bug where on importing qsos notes field was being ignored
This commit is contained in:
@@ -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 = "";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user