diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php
index ebf2692a..daf2e2cf 100644
--- a/application/controllers/Eqsl.php
+++ b/application/controllers/Eqsl.php
@@ -72,7 +72,7 @@ class eqsl extends CI_Controller {
}
$table .= "
";
$html .= "| ".$row->COL_TIME_ON." | ";
- $html .= "".$row->COL_CALL." | ";
+ $html .= "".str_replace("0","Ø",strtoupper($row->COL_CALL))." | ";
$html .= "".$row->COL_RST_SENT." | ";
$html .= "".$row->COL_RST_RCVD." | ";
if($row->COL_SAT_NAME != null) {
diff --git a/application/views/dashboard/index.php b/application/views/dashboard/index.php
index 157ab534..23416cd4 100644
--- a/application/views/dashboard/index.php
+++ b/application/views/dashboard/index.php
@@ -47,7 +47,7 @@
COL_PRIMARY_KEY; ?>" href="javascript:;">
- COL_CALL); ?>
+ COL_CALL)); ?>
|
COL_MODE; ?> |
diff --git a/application/views/qso/index.php b/application/views/qso/index.php
index cca254e3..306094ee 100755
--- a/application/views/qso/index.php
+++ b/application/views/qso/index.php
@@ -324,7 +324,7 @@
foreach ($query->result() as $row) { ?>
'; ?>
COL_TIME_ON; ?> |
- COL_PRIMARY_KEY; ?>" href="javascript:;">COL_CALL); ?> |
+ COL_PRIMARY_KEY; ?>" href="javascript:;">COL_CALL)); ?> |
COL_MODE; ?> |
COL_RST_SENT; ?> |
COL_RST_RCVD; ?> |
diff --git a/application/views/search/result_search.php b/application/views/search/result_search.php
index 964137d3..ac573b54 100644
--- a/application/views/search/result_search.php
+++ b/application/views/search/result_search.php
@@ -33,7 +33,7 @@
'; ?>
COL_TIME_ON); echo date('d/m/y', $timestamp); ?> |
COL_TIME_ON); echo date('H:i', $timestamp); ?> |
- COL_PRIMARY_KEY; ?>">COL_CALL); ?> |
+ COL_PRIMARY_KEY; ?>">COL_CALL)); ?> |
COL_MODE; ?> |
COL_RST_SENT; ?> COL_STX_STRING) { ?>COL_STX_STRING;?> |
COL_RST_RCVD; ?> COL_SRX_STRING) { ?>COL_SRX_STRING;?> |
diff --git a/application/views/view_log/partial/log.php b/application/views/view_log/partial/log.php
index 13e325e2..5c534eb3 100644
--- a/application/views/view_log/partial/log.php
+++ b/application/views/view_log/partial/log.php
@@ -29,7 +29,7 @@
config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE || ($this->config->item('show_time'))) { ?>
COL_TIME_ON); echo date('H:i', $timestamp); ?> |
- COL_PRIMARY_KEY; ?>" href="javascript:;">COL_CALL); ?> |
+ COL_PRIMARY_KEY; ?>" href="javascript:;">COL_CALL)); ?> |
COL_MODE; ?> |
COL_RST_SENT; ?> COL_STX_STRING) { ?>COL_STX_STRING;?> |
COL_RST_RCVD; ?> COL_SRX_STRING) { ?>COL_SRX_STRING;?> |
diff --git a/application/views/view_log/qso.php b/application/views/view_log/qso.php
index c20c3103..5e66fdaf 100644
--- a/application/views/view_log/qso.php
+++ b/application/views/view_log/qso.php
@@ -2,9 +2,9 @@
num_rows() > 0) { foreach ($query->result() as $row) {
?>
config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE || ($this->config->item('show_time'))) { ?>
- QSO with COL_CALL; ?> on the COL_TIME_ON); echo date('d/m/y', $timestamp); $timestamp = strtotime($row->COL_TIME_ON); echo " at ".date('H:i', $timestamp); ?>
+ QSO with COL_CALL)); ?> on the COL_TIME_ON); echo date('d/m/y', $timestamp); $timestamp = strtotime($row->COL_TIME_ON); echo " at ".date('H:i', $timestamp); ?>
- QSO with COL_CALL; ?> on the COL_TIME_ON); echo date('d/m/y', $timestamp);?>
+ QSO with COL_CALL)); ?> on the COL_TIME_ON); echo date('d/m/y', $timestamp);?>
@@ -22,7 +22,7 @@
| Callsign: |
- COL_CALL; ?> |
+ COL_CALL)); ?> |
diff --git a/application/views/widgets/qsos.php b/application/views/widgets/qsos.php
index 93002e9d..c6f0f4bf 100644
--- a/application/views/widgets/qsos.php
+++ b/application/views/widgets/qsos.php
@@ -28,7 +28,7 @@
'; ?>
| COL_TIME_ON); echo date('d/m/y', $timestamp); ?> |
COL_TIME_ON); echo date('H:i', $timestamp); ?> |
- COL_PRIMARY_KEY; ?>">COL_CALL); ?> |
+ COL_PRIMARY_KEY; ?>">COL_CALL)); ?> |
COL_MODE; ?> |
COL_RST_SENT; ?> COL_STX_STRING) { ?>(COL_STX_STRING;?>) |
COL_RST_RCVD; ?> COL_SRX_STRING) { ?>(COL_SRX_STRING;?>) |