Fixed bug where on importing qsos notes field was being ignored

pull/106/merge
Peter Goodhall 2012-10-31 17:41:26 +00:00
rodzic ea15cde52c
commit aba94d9200
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

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