Import ADIF 'comment' field in addition to 'notes'.

PS: Perhaps 'notes' should go into COL_NOTES instead.
This commit is contained in:
Alexandru Csete
2016-02-13 22:21:23 +01:00
parent d404f80e7d
commit ad50b55cb6

View File

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