use start as end time if end is not set separately

This commit is contained in:
phl0 2023-10-27 10:14:29 +02:00
parent f2588ad132
commit d519d88604
No known key found for this signature in database
GPG Key ID: 48EA1E640798CA9A

View File

@ -8,7 +8,11 @@ class Logbook_model extends CI_Model {
$callsign = str_replace('Ø', '0', $this->input->post('callsign'));
// Join date+time
$datetime = date("Y-m-d",strtotime($this->input->post('start_date')))." ". $this->input->post('start_time');
$datetime_off = date("Y-m-d",strtotime($this->input->post('start_date')))." ". $this->input->post('end_time');
if ($this->input->post('end_time') != null) {
$datetime_off = date("Y-m-d",strtotime($this->input->post('start_date')))." ". $this->input->post('end_time');
} else {
$datetime_off = $datetime;
}
if ($this->input->post('prop_mode') != null) {
$prop_mode = $this->input->post('prop_mode');
} else {