mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-25 11:32:35 +00:00
Import ADIF 'comment' field in addition to 'notes'.
PS: Perhaps 'notes' should go into COL_NOTES instead.
This commit is contained in:
@@ -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 = "";
|
||||
|
||||
Reference in New Issue
Block a user