cqz is not required - it's handled at model anyway

This commit is contained in:
Szymon Porwolik
2025-11-23 00:38:53 +01:00
parent 5358fb6871
commit 0d11587bd1
2 changed files with 2 additions and 2 deletions

View File

@@ -96,7 +96,7 @@ class QSO extends CI_Controller {
$data['dxcluster_default_maxage'] = $this->optionslib->get_option('dxcluster_maxage') ?? 60;
} else {
$data['user_dxwaterfall_enable'] = 0;
// default but not used, prevent unset variable, without the need of a db call
$data['dxcluster_default_decont'] = 'EU';
$data['dxcluster_default_maxage'] = 60;

View File

@@ -483,7 +483,7 @@ if (typeof window.DX_WATERFALL_FIELD_MAP === 'undefined') {
<div class="row">
<div class="mb-3 col">
<label for="cqz"><?= __("CQ Zone"); ?></label>
<select class="form-select" id="cqz" name="cqz" required>
<select class="form-select" id="cqz" name="cqz">
<?php
for ($i = 0; $i<=40; $i++) {
echo '<option value="'. $i . '">'. $i .'</option>';