diff --git a/application/views/awards/sota/index.php b/application/views/awards/sota/index.php index ca6b357e5..70a53eb9e 100644 --- a/application/views/awards/sota/index.php +++ b/application/views/awards/sota/index.php @@ -15,27 +15,36 @@ session->userdata('user_date_format')) { + // If Logged in and session exists + $custom_date_format = $this->session->userdata('user_date_format'); + } else { + // Get Default date format from /config/wavelog.php + $custom_date_format = $this->config->item('qso_date_format'); + } ?> -
| = __("Reference"); ?> | -= __("Date/Time"); ?> | -= __("Callsign"); ?> | -= __("Band"); ?> | -= __("RST Sent"); ?> | -= __("RST Received"); ?> | += __("Reference"); ?> | += __("Date"); ?> | += __("Time"); ?> | += __("Callsign"); ?> | += __("Band"); ?> | += __("RST Sent"); ?> | += __("RST Received"); ?> |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| COL_SOTA_REF; ?> | -COL_TIME_ON); echo date('d/m/y', $timestamp); ?> - COL_TIME_ON); echo date('H:i', $timestamp); ?> | +COL_TIME_ON); echo date($custom_date_format, $timestamp); ?> | +COL_TIME_ON); echo date('H:i', $timestamp); ?> | COL_CALL; ?> | COL_BAND; ?> | COL_RST_SENT; ?> | @@ -45,7 +54,7 @@ } } ?> - +