Fix first population of start_date

This commit is contained in:
int2001
2025-08-28 06:15:05 +00:00
parent 35f7a2427e
commit 22a86fa36a
2 changed files with 8 additions and 11 deletions

View File

@@ -30,6 +30,11 @@ class Contesting extends CI_Controller {
} else {
show_404();
}
if ($this->session->userdata('user_date_format')) {
$data['date_format'] = $this->session->userdata('user_date_format');
} else {
$data['date_format'] = $this->config->item('qso_date_format');
}
$data['my_gridsquare'] = $this->stations->find_gridsquare();
$data['radios'] = $this->cat->radios();