Merge remote-tracking branch 'upstream/dev' into bootstrap_5

pull/2707/head
HB9HIL 2023-11-17 08:35:17 +01:00
commit 17f39639be
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -500,6 +500,7 @@ class Logbook_model extends CI_Model {
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
$this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer');
$this->db->join('lotw_users', 'lotw_users.callsign = '.$this->config->item('table_name').'.col_call', 'left outer');
$this->db->where('COL_CALL', $call);
if ($band != 'All') {
if ($band == 'SAT') {

Wyświetl plik

@ -102,7 +102,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) {
<td>
<a id="edit_qso" href="javascript:displayQso(<?php echo $row->COL_PRIMARY_KEY; ?>)"><?php echo str_replace("0","&Oslash;",strtoupper($row->COL_CALL)); ?></a>
<?php
if ($row->lastupload) {
if (isset($row->lastupload) && ($row->lastupload)) {
$lotw_hint = '';
$diff = (time() - strtotime($row->lastupload)) / 86400;
if ($diff > 365) {