mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Import ADIF 'comment' field in addition to 'notes'.
PS: Perhaps 'notes' should go into COL_NOTES instead.
This commit is contained in:
parent
d404f80e7d
commit
ad50b55cb6
1 changed files with 3 additions and 1 deletions
|
|
@ -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 = "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue