kopia lustrzana https://github.com/magicbug/Cloudlog
use start as end time if end is not set separately
rodzic
f2588ad132
commit
d519d88604
|
@ -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');
|
||||
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 {
|
||||
|
|
Ładowanie…
Reference in New Issue