Fixed map

This commit is contained in:
Andreas Kristiansen
2026-02-28 11:32:40 +01:00
parent b186c1595f
commit 35fb4ea5b3
3 changed files with 41 additions and 22 deletions

View File

@@ -1719,6 +1719,15 @@ class Awards extends CI_Controller {
$this->load->model('dxcc');
$this->load->model('bands');
$data['worked_bands'] = $this->bands->get_worked_bands('dxcc');
if ($this->input->post('band') == 'All') {
$bands = $data['worked_bands'];
}
else {
$bands[] = $this->input->post('band');
}
$bands[] = $this->security->xss_clean($this->input->post('band'));
$postdata['qsl'] = ($this->input->post('qsl',true) ?? 0) == 0 ? NULL: 1;