mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-23 01:59:14 +00:00
Fixed a variable typo
This commit is contained in:
parent
4665255507
commit
4424868b88
@ -2924,7 +2924,7 @@ function check_if_callsign_worked_in_logbook($callsign, $StationLocationsArray =
|
||||
'COL_QRZCOM_QSO_DOWNLOAD_DATE' => $qsl_date,
|
||||
'COL_QRZCOM_QSO_DOWNLOAD_STATUS' => $qsl_status,
|
||||
);
|
||||
|
||||
|
||||
|
||||
$this->db->where('date_format(COL_TIME_ON, \'%Y-%m-%d %H:%i\') = "'.$datetime.'"');
|
||||
$this->db->where('COL_CALL', $callsign);
|
||||
@ -3676,8 +3676,8 @@ function lotw_last_qsl_date($user_id) {
|
||||
$band = strtolower($record['band']);
|
||||
} else {
|
||||
if (isset($record['freq'])){
|
||||
if($freq != "0") {
|
||||
$band = $CI->frequency->GetBand($freq);
|
||||
if($record['freq'] != "0") {
|
||||
$band = $CI->frequency->GetBand($record['freq']);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user