mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Fixed bug where on importing qsos notes field was being ignored
This commit is contained in:
parent
ea15cde52c
commit
aba94d9200
1 changed files with 2 additions and 2 deletions
|
|
@ -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 = "";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue