diff --git a/application/views/search/search_result_ajax.php b/application/views/search/search_result_ajax.php
index 60a25ddd..cc358d13 100644
--- a/application/views/search/search_result_ajax.php
+++ b/application/views/search/search_result_ajax.php
@@ -113,7 +113,7 @@ $ci =& get_instance();
$custom_date_format = $this->config->item('qso_date_format');
}
?>
- COL_PRIMARY_KEY .'">'; ?>
+ COL_PRIMARY_KEY .'">'; ?>
COL_TIME_ON); echo date($custom_date_format, $timestamp); ?> |
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); ?> |
@@ -207,7 +207,7 @@ $ci =& get_instance();
if(($this->config->item('use_auth')) && ($this->session->userdata('user_type') >= 2)) { ?>
';
+ echo '';
echo 'COL_QSL_SENT != "N") {
if ($row->COL_QSLSDATE != null) {
diff --git a/application/views/view_log/partial/log_ajax.php b/application/views/view_log/partial/log_ajax.php
index 944fccdf..ab48725a 100644
--- a/application/views/view_log/partial/log_ajax.php
+++ b/application/views/view_log/partial/log_ajax.php
@@ -92,7 +92,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) {
// Get Default date format from /config/cloudlog.php
$custom_date_format = $this->config->item('qso_date_format');
}
- echo ''; ?>
+ echo ' '; ?>
| COL_TIME_ON); echo date($custom_date_format, $timestamp); ?> |
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); ?> |
@@ -109,7 +109,7 @@ function echoQrbCalcLink($mygrid, $grid, $vucc) {
echo_table_col($row, $this->session->userdata('user_column5'));
if(($this->config->item('use_auth')) && ($this->session->userdata('user_type') >= 2)) { ?>
-
+ |
COL_QSL_SENT != "N") {
switch ($row->COL_QSL_SENT) {
case "Y":
diff --git a/assets/js/sections/common.js b/assets/js/sections/common.js
index 92caf191..1f9e764d 100644
--- a/assets/js/sections/common.js
+++ b/assets/js/sections/common.js
@@ -7,7 +7,7 @@ function qsl_rcvd(id, method) {
},
success: function(data) {
if (data.message == 'OK') {
- $("#qso_" + id).find("td:eq(8)").find("span:eq(1)").attr('class', 'qsl-green'); // Paints arrow green
+ $("#qsl_" + id).find("span:eq(1)").attr('class', 'qsl-green'); // Paints arrow green
$(".qsl_rcvd_" + id).remove(); // removes choice from menu
}
else {
@@ -26,7 +26,7 @@ function qsl_sent(id, method) {
},
success: function(data) {
if (data.message == 'OK') {
- $("#qso_" + id).find("td:eq(8)").find("span:eq(0)").attr('class', 'qsl-green'); // Paints arrow green
+ $("#qsl_" + id).find("span:eq(0)").attr('class', 'qsl-green'); // Paints arrow green
$(".qsl_sent_" + id).remove(); // removes choice from menu
}
else {
@@ -47,7 +47,7 @@ function qsl_requested(id, method) {
},
success: function(data) {
if (data.message == 'OK') {
- $("#qso_" + id).find("td:eq(8)").find("span:eq(0)").attr('class', 'qsl-yellow'); // Paints arrow green
+ $("#qsl_" + id).find("span:eq(0)").attr('class', 'qsl-yellow'); // Paints arrow yellow
}
else {
$(".bootstrap-dialog-message").append('×You are not allowed to update QSL status! ');
@@ -67,7 +67,7 @@ function qsl_ignore(id, method) {
},
success: function(data) {
if (data.message == 'OK') {
- $("#qso_" + id).find("td:eq(8)").find("span:eq(0)").attr('class', 'qsl-grey'); // Paints arrow grey
+ $("#qsl_" + id).find("span:eq(0)").attr('class', 'qsl-grey'); // Paints arrow grey
}
else {
$(".bootstrap-dialog-message").append('×You are not allowed to update QSL status! ');
| |