Fix SAT QSO table in statistics

This commit is contained in:
phl0
2025-07-01 17:24:07 +02:00
parent 696f9ec246
commit e3cafd8019
2 changed files with 5 additions and 1 deletions

View File

@@ -304,6 +304,7 @@ class Statistics extends CI_Controller {
$data['page_title'] = __("Log View")." - " . __("Satellite QSOs");
$data['filter'] = $sat;
$data['ispopup'] = true;
$this->load->view('statistics/details', $data);
}

View File

@@ -1,3 +1,6 @@
<h5><?= __("Filtering on"); ?> <?php echo $filter; ?></h5>
<?php $this->load->view('view_log/partial/log_ajax'); ?>
<?php
$data['ispopup'] = $ispopup ?? '';
$this->load->view('view_log/partial/log_ajax');
?>